Cron Dequeue
Component ID
2139303
Component name
Cron Dequeue
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Component created
Component changed
Component body
Dequeue a single batch for all cron queues and optionally run a number of callbacks prior to this.
This module allows you to do things like run the revision scheduler cron job every minute performantly or dequeue from the various cron queues at a higher frequency to core cron.
Example, running the revision scheduler cron job every minute:
$conf['cron_dequeue_pre_dequeue_callbacks'] = array(
'revision_scheduler_cron',
);
Then configure your server to run drush cron-dequeue every minute.
