当前位置:Gxlcms > PHP教程 > laravel5.1-laravelqueue.php中redis配置中default是什么?

laravel5.1-laravelqueue.php中redis配置中default是什么?

时间: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,
        ],

    ],

人气教程排行