Native thread support in Ruby’s latest version

Monday, February 2nd, 2009

Image via Wikipedia It looks like Ruby version 1.9.1 supports native threads and fibers. Fibers are a 'lightweight' approach when you don't need full threads. It sounds like fibers are not preemptive, so they have to yield to other fibers as opposed to threads that can run in ...