aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2015-10-16 18:24:24 -0500
committerschneems <richard.schneeman@gmail.com>2015-10-16 18:24:58 -0500
commit101821410b23267aa78a5c53b5a68458d1ba4d6c (patch)
treec91782cf05fd482a597b071acd4248a1150e175b /guides
parent4d8f62dcfa0a5157b3facbd71f75fc6639636347 (diff)
downloadrails-101821410b23267aa78a5c53b5a68458d1ba4d6c.tar.gz
rails-101821410b23267aa78a5c53b5a68458d1ba4d6c.tar.bz2
rails-101821410b23267aa78a5c53b5a68458d1ba4d6c.zip
[ci skip] Add backend queue starting documentation
If you can't start your queue, you won't process much. This change adds external links to the Queue backends that have Active Job specific docs.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_job_basics.md15
1 files changed, 12 insertions, 3 deletions
diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md
index 17087d187a..a114686f0f 100644
--- a/guides/source/active_job_basics.md
+++ b/guides/source/active_job_basics.md
@@ -136,10 +136,19 @@ module YourApp
end
```
-NOTE: Since jobs run in parallel to your Rails application, most queuing libraries
+### Starting the Backend
+
+Since jobs run in parallel to your Rails application, most queuing libraries
require that you start a library-specific queuing service (in addition to
-starting your Rails app) for the job processing to work. For information on
-how to do that refer to the documentation of your respective library.
+starting your Rails app) for the job processing to work. Refer to library
+documentation for instructions on starting your queue backend.
+
+Here is a noncomprehensive list of documentation:
+
+- [Sidekiq](https://github.com/mperham/sidekiq/wiki/Active-Job)
+- [Resque](https://github.com/resque/resque/wiki/ActiveJob)
+- [Sucker Punch](https://github.com/brandonhilkert/sucker_punch#active-job)
+- [Queue Classic](https://github.com/QueueClassic/queue_classic#active-job)
Queues
------