Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Mar 21, 2024
2 parents b89fe42 + da781ad commit 3e402c9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@

'stores' => [
'array' => [
'driver' => 'array',
'driver' => 'array',
'serialize' => false,
],

'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
'lock_path' => storage_path('framework/cache/data'),
],

'redis' => [
'driver' => 'redis',
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
'driver' => 'redis',
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
],
],
Expand Down

0 comments on commit 3e402c9

Please sign in to comment.