记一次swoole中redis报错问题,Uncaught RedisException: protocol error, got '1' as reply type byte

最近在做一个聊天功能,用到的就是swoole + redis + mysql

开发过程中遇到一些奇葩的问题,如下,

错误描述:

PHP ERR Uncaught RedisException: protocol error, got '1' as reply type byte

PHP ERR Uncaught RedisException: protocol error, got '4' as reply type byte

...
经查阅,排除外网不能访问redis情况(https://blog.csdn.net/u014558480/article/details/54019703),

redis长连接问题,长连接会导致数据异常,由此产生致命错误。网友提供的方案(https://blog.csdn.net/u010320371/article/details/81808642)是将长连接改为短连接,修改之后,并没有解决掉问题。
 

思索了N久,后来在代码层加上如下内容,遂解决

$connect_status = $this->redis->ping();
if($connect_status != "+PONG")
{
    $this->redis = new Redis();
    $this->redis->connect('127.0.0.1', 6379);
    $this->redis->auth('root');
}

在应用redis之前检测redis连接是否已断开,若断开则重新实例化一下

你可能感兴趣的:(redis,php,socket)