'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' => [
|
*/
- 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache'),
+ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache_'),
];