X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/bc291bee783a3124aa9c123de59b3acd4719b106..refs/pull/5591/head:/app/Config/cache.php diff --git a/app/Config/cache.php b/app/Config/cache.php index ded1dcae6..9a0be8eab 100644 --- a/app/Config/cache.php +++ b/app/Config/cache.php @@ -35,10 +35,6 @@ return [ // Available caches stores 'stores' => [ - 'apc' => [ - 'driver' => 'apc', - ], - 'array' => [ 'driver' => 'array', 'serialize' => false, @@ -49,19 +45,21 @@ 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' => [ 'driver' => 'memcached', - 'options' => [ + 'options' => [ // Memcached::OPT_CONNECT_TIMEOUT => 2000, ], - 'servers' => $memcachedServers ?? [], + 'servers' => $memcachedServers ?? [], ], 'redis' => [ @@ -87,6 +85,6 @@ return [ | */ - 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache'), + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache_'), ];