From: James Dinkel Date: 2008-08-14T14:11:25+09:00 Subject: Re: Multithreading in ruby Kaja Mohaideen wrote: > We people are new team for ruby. we trying to pput multithreading in our > code. how is it possible? we want to read a message from queue and > process that message parellaly and finally insert the message to the DB. > Can you give me the Idea please > > Regards > Kaja Mohaideen.A > Trichy Use the Thread class. Just be aware that Ruby 1.8.x uses green threads. Ruby 1.9.x uses native threads. -- Posted via http://www.ruby-forum.com/.