Skip to content

Commit

Permalink
[ci skip] Add backend queue starting documentation
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
schneems committed Oct 16, 2015
1 parent 4d8f62d commit 1018214
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions guides/source/active_job_basics.md
Expand Up @@ -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
------
Expand Down

0 comments on commit 1018214

Please sign in to comment.