httpbin - 协议调试工具
httpstatuses - 协议状态码查询
httpie - cURL-like tool for humans
Fiddler
vevlins
V2EX  ›  HTTP

golang body.close 的默认行为?

  •  
  •   vevlins · Dec 10, 2019 · 2990 views
    This topic created in 2367 days ago, the information mentioned may be changed or developed.

    前提是复用 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 replies    2019-12-10 19:59:09 +08:00
    vevlins
        1
    vevlins  
    OP
       Dec 10, 2019
    上面一段话的含义是否是如果读完缓冲区还有内容,就弃用这个连接,发送一个 connection:close 的包告诉服务器断开链接。 这个“connection:close”是客户端直接发送一个 fin,然后从连接池去掉吗?还是对应什么操作?
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2658 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 21ms · UTC 15:51 · PVG 23:51 · LAX 08:51 · JFK 11:51
    ♥ Do have faith in what you're doing.