We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
When using Laravel Scout for doing full-text search indexing, you might want to use a separate queue for the indexing.
To do so, edit config/scout.php
and change the key queue
from (document here):
<?php
return [
// ...
'queue' => true,
// ...
];
to:
<?php
return [
// ...
'queue' => [
'connection' => null,
'queue' => env('SCOUT_QUEUE_NAME', 'default'),
],
// ...
];
The connection will default to default
if it contains a null value, the queue will be taken from the environment variables and defaults to default
.
All you then need to do is to specify the name of the queue you want to use using an environment variable:
SCOUT_QUEUE_NAME=my-scout-queue
If this post was enjoyable or useful for you, please share it! If you have comments, questions, or feedback, you can email my personal email. To get new posts, subscribe use the RSS feed.