Use Delayed::Job to manage multiple job queues
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2010-06-10T15:17:37Z
Indexed on
2010/06/10
20:13 UTC
Read the original article
Hit count: 557
I want to use Delayed::Job (or perhaps a more appropriate job queue to my problem) to dispatch jobs to multiple background daemons.
I have several background daemons that carry out different responsibilities. Each one is interested in different jobs in the queue from the Rails app. Is this possible using Delayed::Job, or perhaps there is a different job queue that better fits this task?
© Stack Overflow or respective owner