Celery like software for Ruby?

user59634 picture user59634 · Aug 13, 2012 · Viewed 8.2k times · Source

Is there anything similar to Celery for Ruby? Is there anyone with any experience with rcelery? Is it a good choice for production?

Update: I came across resque, which looks like something I might be able to use for my task. Any further suggestions welcome!

Answer

MurifoX picture MurifoX · Aug 13, 2012

There are a lot of options for queues in ruby.

Sidekiq -> https://github.com/mperham/sidekiq
Resque, you got the link
DelayedJob -> http://blog.leetsoft.com/delayed_job/

All of them are pretty much the same. So you just need to use the one you are more confortable working with the examples.
In my projects i ended up using Sidekiq, the reviews about it are pretty awesome.