Hey!
I started to get some experience in multithreading in ruby. It's very interesting!
Problems, which I want to solve with MT is: Cross THE line A face....
so I have lots of faces (lets say 16) and I have 4 CPUs - so I decided "by hand" that every CPU gets 4 faces to check.
But I want to write a queue for the thread - I think this should be a better performance.
With the help of google I found for example this page: http://www.ruby-doc.org/stdlib-1.9.3/libdoc/thread/rdoc/Queue.html#method-i-pop
But there is written: require 'thread' => but I haven't this file and I can find it nowhere
Do you have any experience to use queues in Ruby?
Thanks again for your help!