SwooleDistributed 3 MySQL连接池:数据库重启后连接失效怎么办?
时间:2025-1-10 22:16 作者:emer 分类: 无

distributed 3 连接池在数据库重启后失效
在使用swooledistributed 3框架时,若遇到数据库重启后连接池全部失效的问题,请考虑以下解决方法:
重连失败时,重新创建一个swoole mysql客户端进行连接。修改以下重连代码:
if (!$client->connected) {
$set = $this->config['mysql'][$this->active];
$result = $client->connect($set);
if (!$result) {
$this->pushToPool($client);
$errcode = $client->errno ?? '';
$mysqlCoroutine->getResult(new SwooleException(sprintf("err:%s,code:%s", $client->connect_error, $errcode))); //在这里报的错
}
} else {
// 客户端已连接,无需重连
// ...
} 登录后复制
以上就是SwooleDistributed 3 MySQL连接池:数据库重启后连接失效怎么办?的详细内容,