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:
Jordan Hall 2019-04-04 15:11:18 +01:00 committed by GitHub
parent ae44ee0059
commit c8bc79e94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -117,6 +117,7 @@
'options' => [
'cluster' => env('REDIS_CLUSTER', 'predis'),
'prefix' => str_slug(env('APP_NAME', 'laravel'), '_').'_database',
],
'default' => [