Maison > Article > développement back-end > PHP怎么设置链接redis的超时时间
PHP怎么设置链接redis的超时时间?
问题:
现在是这么连的,有时候redis不稳定,很难连接上,如何设置超时时间?
$this->redis = new Redis(); $this->redis->connect($host, $port); $this->redis->auth($auth);
方法回答:
$this->redis->connect($host, $port,3); 3秒连接超时
注:这里的问题是设置链接超时时间,一旦连接上,那么只要你不关闭连接,在请求的生命周期中是一直连接着的。
更多相关技术文章,请访问PHP中文网!