gpt4 book ai didi

Ruby:Net::HTTP 空闲超时?

转载 作者:数据小太阳 更新时间:2023-10-29 07:16:16 26 4
gpt4 key购买 nike

我正在使用 Ruby 标准库来创建持久连接:

Net::HTTP.new(host, port)

ruby 是否会在空闲一段时间后自行关闭连接?

最佳答案

是的。 MRI Ruby 的默认值为 60 秒。

http = Net::HTTP.new(host, port)
http.read_timeout # -> 60

如果您希望连接不超时,您可以将 read_timeout 设置为 nil

http.read_timeout = nil

关于Ruby:Net::HTTP 空闲超时?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13074779/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com