1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/README.md

66 lines
2.7 KiB
Markdown
Raw Normal View History

2012-06-26 01:30:29 -04:00
Sidekiq [![Build Status](https://secure.travis-ci.org/mperham/sidekiq.png)](http://travis-ci.org/mperham/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-04-05 22:20:24 -04:00
Sidekiq uses threads to handle many messages at the same time in the
same process. It integrates tightly with Rails 3 to make background
message processing dead simple.
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-05-13 23:50:25 -04:00
At the same time, Sidekiq uses multithreading so it is much more memory efficient than
2012-04-05 22:20:24 -04:00
Resque (which forks a new process for every job). 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
2012-01-21 19:42:21 -05:00
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.
Requirements
-----------------
2012-04-05 22:20:24 -04:00
I test on Ruby 1.9.3 and JRuby 1.6.x 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-06-19 15:26:36 -04:00
There's also a mailing list via [Librelist](http://librelist.org) that you can subscribe to by sending
and email to <sidekiq@librelist.org> with a greeting in the body. To unsubscribe, send an email to <sidekiq-unsubscribe@librelist.org> and that's it!
Once archiving begins, you'll be able to visit [the archives](http://librelist.com/browser/sidekiq/) to see past threads.
2012-01-24 21:07:18 -05:00
2012-01-24 22:44:57 -05:00
License
-----------------
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)