diff --git a/config/cache.php b/config/cache.php index 9f39702..06bbd4b 100644 --- a/config/cache.php +++ b/config/cache.php @@ -17,7 +17,7 @@ return [ | */ - 'default' => env('CACHE_STORE', 'database'), + 'default' => env('CACHE_STORE', 'redis'), /* |-------------------------------------------------------------------------- diff --git a/config/queue.php b/config/queue.php index 8829481..5ebbfcb 100644 --- a/config/queue.php +++ b/config/queue.php @@ -15,7 +15,7 @@ return [ | */ - 'default' => env('QUEUE_CONNECTION', 'database'), + 'default' => env('QUEUE_CONNECTION', 'redis'), /* |-------------------------------------------------------------------------- diff --git a/config/session.php b/config/session.php index 2d82fa8..b813fd9 100644 --- a/config/session.php +++ b/config/session.php @@ -20,7 +20,7 @@ return [ | */ - 'driver' => env('SESSION_DRIVER', 'database'), + 'driver' => env('SESSION_DRIVER', 'redis'), /* |--------------------------------------------------------------------------