Browse Source

Merge pull request #4986 from DivineOmega/patch-1

[5.8] Add underscores to cache and redis database prefixes
Taylor Otwell 6 years ago
parent
commit
005ec1301e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      config/cache.php
  2. 1 1
      config/database.php

+ 1 - 1
config/cache.php

@@ -97,6 +97,6 @@ return [
     |
     */
 
-    'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
+    'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
 
 ];

+ 1 - 1
config/database.php

@@ -119,7 +119,7 @@ return [
 
         'options' => [
             'cluster' => env('REDIS_CLUSTER', 'predis'),
-            'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database',
+            'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database_',
         ],
 
         'default' => [