Workling appears to be incompatible with rails 3. What alternatives are there for dealing with work queues in a rails 3 application?
Asked
Active
Viewed 4,922 times
3 Answers
7
There are quite a few options. Some of the top choices:
- sidekiq - requires redis
- resque - requires redis
- delayed_job
- navvy

tjwallace
- 5,528
- 1
- 26
- 15
1
We use Queue Classic, which is simple, easily hackable and very powerful.

Damien MATHIEU
- 31,924
- 13
- 86
- 94
-3
SimpleWorker.com is a new Ruby workers as a service solution that takes all the infrastructure requirements out.
It's Rails 3 compatible and just as easy to use as the open source solutions.

Chad
- 1,818
- 2
- 15
- 23
-
1You appear to have an interest in SimpleWorker...this should be disclosed in your post. – Stefan Jun 14 '13 at 10:22