有没有办法处理除指定队列中的作业以外的所有作业?在延迟作业documentation中,我看到我可以处理来自命名队列的所有作业,如下所示:
# Set the --queue or --queues option to work from a particular queue.
RAILS_ENV=production script/delayed_job --queue=tracking start
RAILS_ENV=production script/delayed_job --queues=mailers,tasks start
但我想做点什么:
RAILS_ENV=production script/delayed_job --skip-queue=tracking start