带user-password形式的配置似乎不支持

半打真心

如题,默认的redis似乎没有这个账户、密码形式的redis客户端连接

84 1 0
1个回答

yongdao35
return [
    'default' => [
        'host'     => '127.0.0.1',
        'username' => null,
        'password' => null,
        'port'     => 6379,
        'database' => 0,
        'pool' => [ // 连接池配置
            'max_connections' => 10,     // 连接池最大连接数
            'min_connections' => 1,      // 连接池最小连接数
            'wait_timeout' => 3,         // 从连接池获取连接最大等待时间
            'idle_timeout' => 50,        // 连接池中连接空闲超时时间,超过该时间会被关闭,直到连接数为min_connections
            'heartbeat_interval' => 50,  // 心跳检测间隔,不要大于60秒
        ],
    ]
];
  • 暂无评论
🔝