开发者社区 问答 正文

PHP如何设置链接redis的超时时间?

现在是这么连的,有时候redis不稳定,很难连接上,如何设置超时时间?
`$this->redis = new Redis();
$this->redis->connect($host, $port);
$this->redis->auth($auth);`

展开
收起
落地花开啦 2016-02-28 18:13:47 4871 分享 版权
1 条回答
写回答
取消 提交回答
  • 喜欢技术,喜欢努力的人

    $this->redis->connect($host, $port,3); 3秒连接超时

    2019-07-17 18:49:57
    赞同 展开评论