Using with Queue
If you're using the Queue module Speedy will add cache clearing jobs to the queue. Add the following to your crontab to execute the queue worker every minute to enact upon jobs in the queue (note /var/www/app
path may change depending on your server configuration)
* * * * * php /var/www/app/system/ee/eecli.php queue:work
You must also tell Speedy to use the queue by adding this to your config.php
file.
$config['speedy_use_queue'] = 'yes';
Last updated
Was this helpful?