Go 标准库剖析 1(transport http 请求的承载者)

2015-09-11
阅读 10 分钟
27.8k
RoundTrip executes a single HTTP transaction, returning the Response for the request req. (RoundTrip 代表一个http事务,给一个请求返回一个响应) 说白了,就是你给它一个request,它给你一个response

nginx 事件模块简单剖析

2015-04-28
阅读 7 分钟
7.1k
事件循环的核心函数是 ngx_process_events_and_timers 。这个函数主要干了四件 事情:抢占 accept mutex,等待并分发事件,处理 accept 事件,处理其他io事件