]> BookStack Code Mirror - bookstack/blobdiff - app/Config/cache.php
System CLI: Updated to 126de5599c state
[bookstack] / app / Config / cache.php
index ded1dcae6cde447c5a181cfb87f86d03226c63fc..b588437ff1a0990a2597a9a5670b35b950ac395f 100644 (file)
@@ -54,14 +54,15 @@ return [
         'file' => [
             'driver' => 'file',
             'path'   => storage_path('framework/cache'),
+            'lock_path' => storage_path('framework/cache'),
         ],
 
         'memcached' => [
             'driver'        => 'memcached',
-            'options' => [
+            'options'       => [
                 // Memcached::OPT_CONNECT_TIMEOUT => 2000,
             ],
-            'servers' =>  $memcachedServers ?? [],
+            'servers' => $memcachedServers ?? [],
         ],
 
         'redis' => [
@@ -87,6 +88,6 @@ return [
     |
     */
 
-    'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache'),
+    'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache_'),
 
 ];