public
Fork of benb/executor
Description: Trivially small thread pool implementation for Ruby
Homepage:
Clone URL: git://github.com/jthopple/babypool.git
jthopple (author)
Fri Oct 16 09:59:37 -0700 2009
commit  2f6d4263734e90b0703e39c6b5108ec3dcf4a9cd
tree    493a6bac0954dc435a176fcb3f786449d01d4b98
parent  8d9429540902782cd1b6d5b0cf011057983fdcf4
name age message
file .gitignore Loading commit data...
file LICENCE
file README.rdoc
file babypool.gemspec
directory lib/
README.rdoc

Baby Pool — Simple thread pool for Ruby.

Baby Pool is a simple, but solid implementation of a thread pool using Ruby green threads. Pools are initialized with a thread count and an execution limit. Baby Pool creates an array or workers each in their own thread that listen for incoming jobs.

The pool will continue to accept work until it is drained by calling the drain method.

A quick example:

  • Initialize the pool with a thread count and an execution limit. Each thread’s worker will timeout it’s current job when it reaches the pool’s execution limit.
          pool = BabyPool.new(:thread_count => 2, :execution_limit => 20)
    
  • Give the pool 20 jobs to do.
          (0..20).each do |job|
            pool.work(job) do
              puts "Thread #{i} handling job #{job}."
            end
          end
    
  • When you are done, shut down the pool by calling the drain method
          pool.drain