开发者社区 问答 正文

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

现在是这么连的,有时候redis不稳定,很难连接上,如何设置超时时间?

 $this->redis = new Redis();
 $this->redis->connect($host, $port);
 $this->redis->auth($auth);

展开
收起
爵霸 2016-03-09 13:10:03 2681 分享 版权
1 条回答
写回答
取消 提交回答
  • $this->redis->connect($host, $port,3); 3秒连接超时

    2019-07-17 18:55:50
    赞同 展开评论