我的数据库中max_connections
的值是312,我只运行200个php线程,导致连接错误太多。
我切断了100个线程,但仍然使用了近200个数据库连接。
我想知道为什么会使用这么多连接,如何在不增加值的情况下解决问题max_connections
$pdo = get_service("user"); // get a new pdo object
$stmt = $pdo->prepare("...");
$stmt->execute(...);
return $stmt->fetch(\PDO::FETCH_ASSOC);
答案 0 :(得分:0)
一个简单的解决方案是:重启你的mysql服务器
希望这可以在不增加max_connections值的情况下解决您的问题