]> BookStack Code Mirror - bookstack/blobdiff - app/Config/cache.php
Tests: Updated comment test to account for new editor usage
[bookstack] / app / Config / cache.php
index d1d47ab16c2e5cc1da072369f0d85d8eb78e2c72..9a0be8eabfc2bfaf9d5bc23f08dd2a4d6997af94 100644 (file)
@@ -35,10 +35,6 @@ return [
     // Available caches stores
     'stores' => [
 
-        'apc' => [
-            'driver' => 'apc',
-        ],
-
         'array' => [
             'driver'    => 'array',
             'serialize' => false,
@@ -49,11 +45,13 @@ return [
             'table'           => 'cache',
             'connection'      => null,
             'lock_connection' => null,
+            'lock_table'      => null,
         ],
 
         'file' => [
             'driver' => 'file',
             'path'   => storage_path('framework/cache'),
+            'lock_path' => storage_path('framework/cache'),
         ],
 
         'memcached' => [