> For the complete documentation index, see [llms.txt](https://docs.boldminded.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.boldminded.com/speedy/docs/using-with-queue.md).

# Using with Queue

If you're using the [Queue](https://boldminded.com/add-ons/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)

```bash
* * * * * 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';
```
