Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Job queue alternatives to workling for use with rails 3?

Workling appears to be incompatible with rails 3. What alternatives are there for dealing with work queues in a rails 3 application?

like image 893
kdt Avatar asked Jan 27 '11 22:01

kdt


2 Answers

There are quite a few options. Some of the top choices:

  • sidekiq - requires redis
  • resque - requires redis
  • delayed_job
  • navvy
like image 143
tjwallace Avatar answered Nov 08 '22 13:11

tjwallace


We use Queue Classic, which is simple, easily hackable and very powerful.

like image 24
Damien MATHIEU Avatar answered Nov 08 '22 14:11

Damien MATHIEU