V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
httpbin - 协议调试工具
httpstatuses - 协议状态码查询
httpie - cURL-like tool for humans
Fiddler
vevlins
V2EX  ›  HTTP

golang body.close 的默认行为?

  •  
  •   vevlins · 2019-12-10 19:41:32 +08:00 · 2296 次点击
    这是一个创建于 1570 天前的主题,其中的信息可能已经有所发展或是发生改变。

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

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

    1 条回复    2019-12-10 19:59:09 +08:00
    vevlins
        1
    vevlins  
    OP
       2019-12-10 19:59:09 +08:00
    上面一段话的含义是否是如果读完缓冲区还有内容,就弃用这个连接,发送一个 connection:close 的包告诉服务器断开链接。 这个“connection:close”是客户端直接发送一个 fin,然后从连接池去掉吗?还是对应什么操作?
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   937 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 20:59 · PVG 04:59 · LAX 13:59 · JFK 16:59
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.