在服务器上,”http keep-alive timeout” 表示 HTTP 长连接超时时间。

huangapple go评论92阅读模式
英文:

http keep-alive timeout on server

问题

Go服务器是否有一个http保持活动的默认超时值?

如何设置自定义的保持活动超时?

服务器的ReadTimeout是否与保持活动超时有关?还是需要直接在http响应头中设置保持活动超时?

英文:

Does the Go server have an http keep-alive default timeout value?

How do you set a custom keep-alive timeout?

Is the server's ReadTimeout related to the keep-alive timeout at all? or you need to set the keep-alive timeout directly in the http response header?

答案1

得分: 1

这个问题显示他们将ReadTimeout服务器设置为每个请求而不是每个连接。这是你要设置的超时保持活动的值。

英文:

This issue shows they made the ReadTimeout server setting be per-request not per connection. This is the value you are looking to set to timeout keep-alives.

huangapple
  • 本文由 发表于 2014年3月19日 08:13:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/22493730.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定