Is there anything similar to Celery for Ruby? Is there anyone with any experience
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.