PHP 和持久连接
每当我打开与数据库的持久连接时,如果数据库守护程序崩溃然后重新启动,则与守护程序的新连接的 30% 将导致管道损坏错误。
这可以通过更改持久连接句柄来修复,但需要手动完成。有没有一种解决方案可以在不更换手柄的情况下修复断管错误?
Whenever I open a persistent connection to the DB , if the DB daemon crashes and is then restarted, 30% of new connections to the daemon will result in a broken pipe error.
This is fixable by changing the persistent connection handle, but it needs to be done manually. Is there a solution that can fix the broken pipe errors without changing the handle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题是
这就是您需要修复的...查看日志以查找问题...
寻找替代修复方法相当于在断臂上缠上绷带。
Your problem is with
This is what you need to fix... Look through the logs to find the problem...
Finding alternative fix is equivalent of applying a bandage on a broken arm.