Skip to content

Commit

Permalink
fix: make redis default
Browse files Browse the repository at this point in the history
  • Loading branch information
hackeresq committed Jan 31, 2025
1 parent a705b79 commit 894da4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
|
*/

'default' => env('CACHE_STORE', 'database'),
'default' => env('CACHE_STORE', 'redis'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
|
*/

'default' => env('QUEUE_CONNECTION', 'database'),
'default' => env('QUEUE_CONNECTION', 'redis'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion config/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
|
*/

'driver' => env('SESSION_DRIVER', 'database'),
'driver' => env('SESSION_DRIVER', 'redis'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 894da4e

Please sign in to comment.