-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Description
如果redis 出现以下问题,可以更改 config/database.php 文件,可以解决
local.ERROR: Uncaught Error: Call to undefined method Illuminate\Support\Facades\Redis::connect()
database.php
'redis' => [
'client' => 'phpredis', // phpredis 改为 predis
'default' => [
'host' => env('REDIS_HOST', 'localhost'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => 0,
],
],
Metadata
Metadata
Assignees
Labels
No labels