我有一个任务可以做很多事情,其中​​一些可以“阻塞”,因为它调用外部 API。

我的问题:是否可以确定 RailsThread 在方法中“停留”多长时间?如果花费太长时间,等等会中断它或重新加载。问题是没有错误,所以我不能做任何类似救援的事情。

我想做的伪代码:

def aMethod
  #doSomethingThatCanBlock
  if takeMoreThan1000ms
    #reloadMethod or break
  end
end

最佳答案

require 'timeout'

def a_method(iterations)
  Timeout::timeout(1) do # 1 second
    iterations.times { |i| print("#{i} "); sleep(0.1) }
  end
rescue Timeout::Error
  print("TIMEOUT")
ensure
  puts
end

和一个例子:
irb(main):012:0> a_method(3)
0 1 2
=> 3
irb(main):013:0> a_method(30)
0 1 2 3 4 5 6 7 8 9 TIMEOUT
=> nil

关于ruby-on-rails-3 - Rails 方法运行设置超时 - 确定方法中的线程 "stays"多长时间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13973411/

10-13 04:48