Django runonce-per-db 标志?

发布于 2024-12-12 01:58:59 字数 182 浏览 0 评论 0原文

Django“runonce-per-db”标志是什么?

我在此帖子中看到它,但找不到任何文档为了它。

What is the Django "runonce-per-db" flag?

I see it mentioned in this thread, but cannot find any documentation for it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

转瞬即逝 2024-12-19 01:58:59

我不认为这是 django 代码。 runonce 没有出现在源代码中。

为了实现这一点,我们附加到 post_syncdb,并设置一个 runonce-per-db 标志(因为它似乎是
仅可用信号)

他只是说他需要设置一个标志(他称之为 runonce-per-db),因为 post_syncdb 是为每个应用程序发出的,并且大概他的代码只需要触发一次。

I don't think it's django code. runonce doesn't appear in the source.

To implement this we attach to the post_syncdb, and set a runonce-per-db flag (since it seems to be the
only available signal)

He's just saying he needs to set a flag (which he's referring to as runonce-per-db) because post_syncdb is emitted for every app and presumably his code needs to fire only once.

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