出于测试目的,我尝试net/http.Client在 Go 中创建一个禁用连接池的项目。我想要实现的是每个 HTTP/1.x 请求上的地址都建立一个新的 TCP 连接。
目前我有:
c = &http.Client{
Transport: &http.Transport{
DialContext: (&net.Dialer{
Timeout: 5 * time.Second,
KeepAlive: 5 * time.Second,
}).DialContext,
TLSHandshakeTimeout: 5 * time.Second,
ResponseHeaderTimeout: 5 * time.Second,
ExpectContinueTimeout: 1 * time.Second,
},
}
有什么想法我应该如何调整这个吗?
我发现如果我设置c.Transport.MaxIdleConns = 1这个可以工作,但我不确定这是否仍然允许 1 个使用中 + 1 个空闲(总共 2 个)TCP 连接:
// MaxIdleConns controls the maximum number of idle (keep-alive)
// connections across all hosts. Zero means no limit.
MaxIdleConns int
同样,似乎也c.Dialer.KeepAlive = -1可以这样做:
// KeepAlive specifies the keep-alive period for an active
// network connection.
// If zero, keep-alives are enabled if supported by the protocol
// and operating system. Network protocols or operating systems
// that do not support keep-alives ignore this field.
// If negative, keep-alives are disabled.
但我不确定 TCP 连接 + Keep-Alive + HTTP 的行为。
另一种方法是尝试尽快杀死空闲的 TCP 连接,所以我设置了c.Transport.IdleConnTimeout = 1*time.Nanosecond.
当我这样做时,我Client.Do()现在偶尔会返回错误:
tls: use of closed connection
我怀疑这是一个 Go stdlib 问题(可能是一场竞赛),它使用了应该从池中取出的连接。
哆啦的时光机
饮歌长啸
红颜莎娜
相关分类