Update redis config to use phpredis

This commit is contained in:
DariusIII
2019-10-07 14:49:35 +02:00
parent 04b1fdb836
commit 24b88b846c
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -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' => [