Skip to content
mperham edited this page Jan 6, 2013 · 36 revisions

sidekiq provides simple and efficient message processing for Ruby applications. It aims to be compatible with Resque where possible to leverage existing code and monitoring tools.

It is very efficient because it is multi-threaded. Instead of using 20 processes, you just have one process with 20 threads. Yes, you will see a big improvement, even with Ruby 1.9's GIL.

Read for more info:

Sidekiq Pro

Clone this wiki locally