From 24b88b846c307802772a12069fce9c2b76d768da Mon Sep 17 00:00:00 2001 From: DariusIII Date: Mon, 7 Oct 2019 14:49:35 +0200 Subject: [PATCH] Update redis config to use phpredis --- Changelog | 1 + config/database.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 64d6c9b68..3ef642bbf 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2019-10-07 DariusIII + * Chg: Update redis config to use phpredis * Chg: Update user role assignment on registration 2019-10-06 DariusIII * Chg: Update movie tagline handling diff --git a/config/database.php b/config/database.php index 2eab792fd..0e6b86b0d 100644 --- a/config/database.php +++ b/config/database.php @@ -123,9 +123,9 @@ return [ */ 'redis' => [ - 'client' => 'predis', + 'client' => 'phpredis', 'options' => [ - 'cluster' => env('REDIS_CLUSTER', 'predis'), + 'cluster' => env('REDIS_CLUSTER', 'redis'), 'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database_', ], 'default' => [