I know about the "cooperative" threading of ruby using green threads. How can I create real "OS-level" threads in my application in order to make use of multiple cpu cores for processing?
feedback
|
|
You seem to be confusing two very different things here: the Ruby Programming Language and the specific threading model of one specific implementation of the Ruby Programming Language. There are currently around 11 different implementations of the Ruby Programming Language, with very different and unique threading models. (Unfortunately, only two of those 11 implementations are actually ready for production use, but by the end of the year that number will probably go up to four or five.)
Unfortunately, only two of these 11 Ruby Implementations are actually production-ready: MRI and JRuby. So, if you want true parallel threads, JRuby is currently your only choice – not that that's a bad one: JRuby is actually faster than MRI, and arguably more stable. Otherwise, the "classical" Ruby solution is to use processes
instead of threads for parallelism. The Ruby Core Library
contains the | |||||||||||||||||
feedback
|
|
Ruby 1.8 only has green threads, there is no way to create a real "OS-level" thread. But, ruby 1.9 will have a new feature called fibers, which will allow you to create actual OS-level threads. Unfortunately, Ruby 1.9 is still in beta, it is scheduled to be stable in a couple of months. Another alternative is to use JRuby. JRuby implements threads as OS-level theads, there are no "green threads" in it. The latest version of JRuby is 1.1.4 and is equivalent to Ruby 1.8 | |||||||||
feedback
|
|
How about using drb? It's not real multi-threading but communication between several processes, but you can use it now in 1.8 and it's fairly low friction. | |||
|
feedback
|
|
If you are using MRI, then you can write the threaded code in C either as an extension or using the ruby-inline gem. | |||
|
feedback
|
|
If you really need parallelism in Ruby for a Production level system (where you cannot employ a beta) processes are probably a better alternative. Also if you are interested in future of threading under Ruby, you might find this article useful. | |||
|
feedback
|
|
Here is some info on Rinda which is Ruby implementation of Linda (parallel processing and distributed computing paradigm) http://charmalloc.blogspot.com/2009/12/linda-tuples-rinda-drb-parallel.html | |||
|
feedback
|