Hello all,
I'm building an application that has to branch out and call about 10
other Ruby scripts. Since each script will run for a few seconds,
waiting for each one to finish will take a while, which is too much. So,
I've been looking into threads and I have a system that's working (in
tests), but I have a few questions. First of all, the system:
require 'enumerator'
holder = []
array = (1..10).to_a
puts array.inspect
array.each_slice(3) do |group|
group.each do |number|
@thread = Thread.new do
puts "Starting #{number}...\n"
sleep(5)
holder << number
end
end
end
@thread.join
puts holder.inspect
In theory, the output should look something like this:
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Starting 1...
Starting 2...
Starting 3...
Starting 4...
Starting 5...
Starting 6...
Starting 7...
Starting 8...
Starting 9...
Starting 10...
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
However, sometimes the second thread may finish before the first, etc.,
but the order doesn't matter. What matters is that the script's
execution time just went from over 20 seconds to under two! However, as
you can see, I have to call '@thread.join'. I do this because if I
don't, the script will exit before all of the threads are done
executing, so holder is always an emtpy array. Am I right? Or is there
some other way to keep the main script from exiting until all the
threads are done? Is there anything else I'm doing wrong?
Thanks,
Michael Boutros
···
--
Posted via http://www.ruby-forum.com/.