时间:2021-07-01 10:21:17 帮助过:13人阅读
connection是引用了哪个配置呢?
connection是引用了哪个配置呢?
https://laravel.com/docs/5.2/redis,看看手册吧
在database.php配置文件中:
'redis' => [
'cluster' => false,
'default' => [
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0,
],
],