摘要:
#三次握手,四次挥手 ####TCP server #include <stdlib.h> #include <stdio.h> #include <errno.h> #include <string.h> #include <unistd.h> #include <netdb.h> #includ 阅读全文
摘要:
Go的调度为什么说是轻量的? Go高度都发生了什么? Go的网络和锁会不会阻塞线程? 什么时候会阻塞线程? Go是怎样实现少量内核线程支撑大量Goroutine的并发运行? 为了最大限度利用计算资源,Go调度器是如何处理线程阻塞的场景? #GMP G:goroutine 协程 P:processor 阅读全文