Predis 给出“从服务器读取行时出错”
我正在使用predis,它订阅了一个频道并收听。它会抛出以下错误(如下),并在60秒后完全死亡。这肯定不是我的Web服务器错误或其超时。
这里也讨论了一个类似的问题。不能得到很多。
我尝试将 predis conf 文件中的 connection_timeout 设置为 0,但没有多大帮助。
另外,如果我继续使用(向它发送数据并处理)工作线程,它不会给出任何错误。因此,它可能是某个地方的超时,并且与此相关。
这是我的代码片段,它可能会产生错误,因为如果将数据提供给worker,它将运行此代码并继续前进,此后不会产生任何错误。
$pubsub = $redis->pubSub();
$pubsub->subscribe($channel1);
foreach ($pubsub as $message) { //doing stuff here and unsubscribing from channel
}
跟踪
PHP Fatal error: Uncaught exception 'Predis\Network\ConnectionException' with message 'Error while reading line from the server' in Predis/Network/ConnectionBase.php:159 Stack trace:
#0 library/vendor/predis/lib/Predis/Network/StreamConnection.php(195): Predis\Network\ConnectionBase->onConnectionError('Error while rea...')
#1 library/vendor/predis/lib/Predis/PubSub/PubSubContext.php(259): Predis\Network\StreamConnection->read()
#2 library/vendor/predis/lib/Predis/PubSub/PubSubContext.php(206): Predis\PubSub\PubSubContext->getValue()
#3 pdf/file.php(16): Predis\PubSub\PubSubContext->current()
#4 {main} thrown in Predis/Network/ConnectionBase.php on line 159
检查了 redis.conf 超时,它也被禁用了。