golang body.close 的默认行为?

2019-12-10 19:41:32 +08:00
 vevlins

前提是复用 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)

上面这段话该如何理解呢?

2316 次点击
所在节点    HTTP
1 条回复
vevlins
2019-12-10 19:59:09 +08:00
上面一段话的含义是否是如果读完缓冲区还有内容,就弃用这个连接,发送一个 connection:close 的包告诉服务器断开链接。 这个“connection:close”是客户端直接发送一个 fin,然后从连接池去掉吗?还是对应什么操作?

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/627737

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX