# 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';
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.boldminded.com/speedy/docs/using-with-queue.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
