有没有办法在服务器端指定超时后保持空闲连接打开?
我有一个使用golang1.4实现的http服务器,一个API将在10秒后响应。当我在客户端设置MaxIdleConnsPerHost
时(使用golang1.4),我仍然得到read tcp xx.xx.xx.xx:xx: use of closed network connection
。我认为这可能是由服务器关闭空闲连接引起的。
我找到GOLANG, HTTP having “use of closed network connection” error和http.Server: timeout for idle connections only?,但他们没有帮助。