高精度睡眠在Ruby中

时间:2012-10-27 18:03:09

标签: ruby timer sleep precision

  

可能重复:
  Ruby sleep or delay less than a second?

我有100-1000个线程正在运行(或更多)。 每个线程都应该在完全相同的时刻执行特定的方法(尽可能最精确)。

我能想到的唯一解决方案是让每个线程都休眠以获得某个时间戳的差异,但是sleep()并不准确。 我也在考虑使用EventMachineEventMachine::Timer,但这似乎更不可靠和准确。

您将使用什么技术来获得最佳效果?

1 个答案:

答案 0 :(得分:5)

很多人不知道sleep采用浮动值:

Suspends the current thread for duration seconds (which may be
any number, including a Float with fractional seconds). Returns the actual
number of seconds slept (rounded), which may be less than that asked for if
another thread calls Thread#run. Called without an argument, sleep() will
sleep forever.

  Time.new    #=> 2008-03-08 19:56:19 +0900
  sleep 1.2   #=> 1
  Time.new    #=> 2008-03-08 19:56:20 +0900
  sleep 1.9   #=> 2
  Time.new    #=> 2008-03-08 19:56:22 +0900

无法保证延迟是准确的:

3.times do 
  t1 = Time.now.to_f
  sleep 0.5
  t2 = Time.now.to_f
  puts t2 - t1
end

结果:

0.501162052154541
0.5010881423950195
0.5001001358032227

运行的其他任务可能会使这种倾斜更多。