Prefix redis database connection by default to mitigate multiple sites on the same server potentially sharing the same queued jobs
This commit is contained in:
parent
ae44ee0059
commit
c8bc79e94e
|
@ -117,6 +117,7 @@
|
|||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'predis'),
|
||||
'prefix' => str_slug(env('APP_NAME', 'laravel'), '_').'_database',
|
||||
],
|
||||
|
||||
'default' => [
|
||||
|
|
Loading…
Reference in New Issue