Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近遇到这样一个问题,mysql永久崩溃,错误“Too many connections”。
连接限制增加(350 个连接),但这对我没有帮助。我正在使用具有持久连接的 PDO,但仍为新连接打开。
可能是什么问题?谢谢。
从我在 pdo 标签下的其他问题中看到的代码来看,您很可能正在为每个查询打开新连接。因此,持久连接使情况变得更糟。
只创建一个连接并在整个应用程序中使用它,错误就会消失。