From: Joe Martin Date: 2010-03-09T00:14:34+09:00 Subject: Re: Limit number of concurrent running threads in pool Robert Klemme wrote: > Which other method are you referring to? Well my original thinking was to create a thread for every single item I pass to the program. Caleb answered this for me in that threads themselves are quite heavy, so it further leads me to go with your solution which creates a low number of threads and re-uses them until the queue is empty. It seems much more simple and effecient than my original plan. -- Posted via http://www.ruby-forum.com/.