前提是复用 http 链接,采用 stream 读法。
采用 stream 读法并不读完这个链接的 body,比如整个请求是 1M,只读了 1k,这时候 close,会发生什么?
是会读完完整的 1M 再放回到 http 复用池中还是读 tcp 缓冲区的大小?因为从 golang net/http/transfer.go 中看是读了 maxPostHandlerReadBytes 的长度。但是自己理解不了,缓冲区读完后服务端因为滑动窗口不是会继续发送之前阻塞的数据吗,这样又不是可用状态了。
maxPostHandlerReadBytes is the max number of Request.Body bytes not consumed by a handler that the server will read from the client in order to keep a connection alive. If there are more bytes than this then the server to be paranoid instead sends a "Connection: close" response.
This number is approximately what a typical machine's TCP buffer size is anyway. (if we have the bytes on the machine, we might as well read them)
上面这段话该如何理解呢?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.