2012-02-27 00:09:02 -05:00
Sidekiq
2012-01-21 19:42:21 -05:00
==============
2012-01-16 18:17:42 -05:00
2012-01-21 19:42:21 -05:00
Simple, efficient message processing for Ruby.
2012-03-26 09:26:05 -04:00
Sidekiq is compatible with Resque. It uses the exact same
2012-02-05 10:55:18 -05:00
message format as Resque so it can integrate into an existing Resque processing farm.
2012-01-21 19:42:21 -05:00
You can have Sidekiq and Resque run side-by-side at the same time and
2012-01-23 23:56:06 -05:00
use the Resque client to enqueue messages in Redis to be processed by Sidekiq.
2012-01-21 19:42:21 -05:00
2012-03-26 09:26:05 -04:00
At the same time, Sidekiq uses multithreading so it much more memory efficient than Resque (which forks a new process for every job).
2012-01-21 19:42:21 -05:00
You'll find that you might need 50 200MB resque processes to peg your CPU
whereas one 300MB Sidekiq process will peg the same CPU and perform the
same amount of work. Please see [my blog post on Resque's memory
efficiency](http://blog.carbonfive.com/2011/09/16/improving-resques-memory-efficiency/)
2012-01-26 00:12:18 -05:00
and how I was able to shrink a Carbon Five client's resque processing farm
2012-01-21 19:42:21 -05:00
from 9 machines to 1 machine.
2012-03-26 09:26:05 -04:00
In sum, if your jobs are well-behaved and threadsafe, Sidekiq is probably a good replacement for Resque. If your jobs are not thread-safe or they leak memory, you may want to continue using Resque, because its forking model gives you more protection.
2012-01-21 19:42:21 -05:00
Requirements
-----------------
I test on Ruby 1.9.3 and JRuby 1.6.5 in 1.9 mode. Other versions/VMs are
2012-02-05 16:06:33 -05:00
untested but I will do my best to support them. Ruby 1.8 is not supported.
2012-01-21 19:42:21 -05:00
Installation
-----------------
gem install sidekiq
2012-01-26 00:12:18 -05:00
Getting Started
2012-01-21 19:42:21 -05:00
-----------------
2012-01-26 00:12:18 -05:00
See the [sidekiq home page ](http://mperham.github.com/sidekiq ) for the simple 4-step process.
2012-01-21 19:42:21 -05:00
2012-01-24 21:07:18 -05:00
More Information
-----------------
2012-01-26 00:12:18 -05:00
Please see the [sidekiq wiki ](https://github.com/mperham/sidekiq/wiki ) for more information.
2012-03-06 13:20:06 -05:00
[#sidekiq on irc.freenode.net ](irc://irc.freenode.net/#sidekiq ) is dedicated to this project,
but bug reports or feature requests suggestions should still go through [issues on Github ](https://github.com/mperham/sidekiq/issues ).
2012-01-24 21:07:18 -05:00
2012-01-24 22:44:57 -05:00
License
-----------------
2012-02-07 11:51:39 -05:00
Please see LICENSE for licensing details.
2012-01-24 22:44:57 -05:00
< a href = 'http://www.pledgie.com/campaigns/16623' > < img alt = 'Click here to lend your support to Open Source and make a donation at www.pledgie.com !' src = 'http://www.pledgie.com/campaigns/16623.png?skin_name=chrome' border = '0' / > < / a >
2012-01-21 19:42:21 -05:00
Author
-----------------
Mike Perham, [@mperham ](https://twitter.com/mperham ), [http://mikeperham.com ](http://mikeperham.com )
2012-01-23 23:56:06 -05:00