Django 中 MySQL 的自动重新连接
如何在MySQL的自动重连行为的行为“https://www.djangoproject.com/">django?
我假设这是客户端配置,对吗?
How do you set the behavior of MySQL's automatic reconnection behavior in django?
I'm assuming this is a client side configuration, correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Django 数据库包装器有一个名为
is_usable()
用于 ping 服务器以检查其是否已启动。这是 MySQL 的 -来自您提供的 MySQL url -
因此,这完全取决于您如何配置这部分 -
您必须在 DBMS 上自行设置。
Django database wrappers have a method called
is_usable()
that pings the server to check if it's up. This is the one for MySQL -From MySQL url you provided -
So it all depends on how you configured this part -
which you have to set yourself on the DBMS.