我最近收到一个 mysql to many connectiions 错误,我使用了如下的 sql 查询
SET GLOBAL max_conmnections = 8000;
我也提高了mysql.pool.max to 8000
,当我的模拟器在调试器中时,它在这个空白处崩溃
private static SqlDatabaseClient CreateClient(int Id)
{
MySqlConnection Connection = new MySqlConnection(GenerateConnectionString());
Connection.Open();
return new SqlDatabaseClient(Id, Connection);
}
突出显示导致它崩溃的那一行是connection.open();
当我收到 10-12 个在线连接时发生的,模拟器在调试器中运行了 7-8 小时!