Django 中 MySQL 的自动重新连接

发布于 2024-12-19 10:49:58 字数 107 浏览 2 评论 0原文

如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

城歌 2024-12-26 10:49:58

Django 数据库包装器有一个名为 is_usable() 用于 ping 服务器以检查其是否已启动。这是 MySQL 的 -

def is_usable(self):
    try:
        self.connection.ping()
    except DatabaseError:
        return False
    else:
        return True

来自您提供的 MySQL url -

如果启用自动重新连接,mysql_ping() 会执行重新连接。否则,它将返回错误。

因此,这完全取决于您如何配置这部分 -

mysql_options(&mysql, MYSQL_OPT_RECONNECT, &reconnect);

您必须在 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 -

def is_usable(self):
    try:
        self.connection.ping()
    except DatabaseError:
        return False
    else:
        return True

From MySQL url you provided -

If auto-reconnect is enabled, mysql_ping() performs a reconnect. Otherwise, it returns an error.

So it all depends on how you configured this part -

mysql_options(&mysql, MYSQL_OPT_RECONNECT, &reconnect);

which you have to set yourself on the DBMS.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文