We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 980a386 commit a43c9fbCopy full SHA for a43c9fb
docs/README.md
@@ -69,6 +69,12 @@ You may create a file called `app_queue.php` inside your `config` folder (NOT th
69
```php
70
$config['Queue']['cleanuptimeout'] = 2592000; // 30 days
71
```
72
+
73
+- Use a different connection:
74
75
+ ```php
76
+ $config['Queue']['connection'] = 'custom'; // Defaults to 'default'
77
+ ```
78
79
Don't forget to load that config file with `Configure::load('app_queue');` in your bootstrap.
80
You can also use `Plugin::load('Queue', ['bootstrap' => true]);` which will load your `app_queue.php` config file automatically.
0 commit comments