Ruby:增加超时前的时间?

发布于 2024-10-20 20:41:22 字数 157 浏览 1 评论 0原文

我正在尝试执行以下操作:

remote_feed = open(url)

但是远程源需要一段时间才能返回,并且调用超时。我只需要增加超时发生之前的时间,有没有一种简单的方法可以在 ruby​​ 中做到这一点?

谢谢!

I'm trying to do the following:

remote_feed = open(url)

But the remote feed takes a while to return, and the call times out. I just need to increase the time until timeout occurs, is there a simple way to do this in ruby?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯了 2024-10-27 20:41:22
require 'open-uri'

open('http://stackoverflow.com', 'r', :read_timeout=>0.01) do |http|
  http.read
end
require 'open-uri'

open('http://stackoverflow.com', 'r', :read_timeout=>0.01) do |http|
  http.read
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文