-
Notifications
You must be signed in to change notification settings - Fork 71
Optional on demand queue processing
Ryan Hungate edited this page Nov 19, 2019
·
8 revisions
This setting has been deprecated and is no longer required to optimize anything related to the queue system. We've since moved our queue to use the Action Scheduler which is a highly optimized system to run queued jobs in wordpress.
If you would like to turn off the background queue processing and handle jobs "on-demand" you can do so by adding a constant in your wp-config.php file:
define('MAILCHIMP_DISABLE_QUEUE', true);
This is helpful with high CPU usage on small servers by making a call to the admin-ajax file and manually processing a single request at a time.