aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2014-05-19 18:09:45 +0000
committerAbdelkader Boudih <terminale@gmail.com>2014-05-20 09:57:31 +0000
commit6d009504a02fecb822820e18abd69dd569f72e82 (patch)
treeba9c5181194a0ae06e2e7c72f1a211ded9372506 /README.md
parentf5c85dc021fd5c66d7f7a40f7de1b3877c88f62a (diff)
downloadrails-6d009504a02fecb822820e18abd69dd569f72e82.tar.gz
rails-6d009504a02fecb822820e18abd69dd569f72e82.tar.bz2
rails-6d009504a02fecb822820e18abd69dd569f72e82.zip
Add Que Adapter/Wrapper
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 10 insertions, 8 deletions
diff --git a/README.md b/README.md
index ca6e2c1e4b..e8e12e859c 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ of the request-response cycle, so the user doesn't have to wait on it.
The main point is to ensure that all Rails apps will have a job infrastructure
in place, even if it's in the form of an "immediate runner". We can then have
framework features and other gems build on top of that, without having to worry
-about API differences between Delayed Job and Resque. Picking your queuing
+about API differences between Delayed Job and Resque. Picking your queuing
backend becomes more of an operational concern, then. And you'll be able to
switch between them without having to rewrite your jobs.
@@ -24,7 +24,8 @@ Set the queue adapter for Active Job:
``` ruby
ActiveJob::Base.queue_adapter = :inline # default queue adapter
-# Adapters currently supported: :resque, :sidekiq, :sucker_punch, :delayed_job, :queue_classic, :sneakers
+# Adapters currently supported: :delayed_job, :que, :queue_classic, :resque,
+# :sidekiq, :sneakers, :sucker_punch
```
Declare a job like so:
@@ -79,12 +80,13 @@ by default has been mixed into Active Record classes.
We currently have adapters for:
-* Resque 1.x
-* Sidekiq
-* Sucker Punch
-* Delayed Job
-* QueueClassic
-* Sneakers
+* [Delayed Job](https://github.com/collectiveidea/delayed_job)
+* [Que](https://github.com/chanks/que)
+* [QueueClassic](https://github.com/ryandotsmith/queue_classic)
+* [Resque 1.x](https://github.com/resque/resque)
+* [Sidekiq](https://github.com/mperham/sidekiq)
+* [Sneakers](https://github.com/jondot/sneakers)
+* [Sucker Punch](https://github.com/brandonhilkert/sucker_punch)
## Under development as a gem, targeted for Rails inclusion