workerman ErrorException: Redis::get(): Send of 58 bytes failed with errno=10054 強迫關閉了一個現有的連接

redis總是被中斷,產生致命錯誤 ErrorException: Redis::get(): Send of 58 bytes failed with errno=10054 遠程主機強迫關閉了一個現有的連接。 in D:\net\vendor\workerman\workerman\Protocols\Http\Session\RedisSessionHandler.php:84

改 vendor/workerman/workerman/Protocols/Http/Session/RedisSessionHandler.php public function __construct($config) 方法裏最後面加上

\Workerman\Timer::add(isset($config['ping']) ? $config['ping'] : 55, function () { $this->_redis->get('ping'); });

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章