Web.py mod_wsgi 自动重载

发布于 2024-08-22 03:25:36 字数 297 浏览 11 评论 0原文

我正在使用 mod_wsgi 运行最新版本的 web.py 并在我的代码中包含以下内容:

application = web.application(urls, globals(), autoreload=True).wsgifunc()

它是自动重新加载的有时我需要自己去命令行并重新启动 Apache。知道为什么它不总是“自动重新加载”吗?

细节:

Apache 2.2.12
Python 2.6
web.py 0.33
mod_wsgi 3.1

I am running the latest version of web.py with mod_wsgi and have this in my code:

application = web.application(urls, globals(), autoreload=True).wsgifunc()

It is autoreloading most of the time but every so often I need to go to the command line and restart Apache myself. Any idea why it is not always "autoreloading"?

Details:

Apache 2.2.12
Python 2.6
web.py 0.33
mod_wsgi 3.1

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

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

发布评论

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

评论(1

热风软妹 2024-08-29 03:25:36

您不应该依赖 Apache/mod_wsgi 下的内部 web.py 重新加载机制,因为根本不可能正常工作。如果您以某种方式启用了 web.py 重新加载机制,请禁用它,然后阅读:

http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode

这解释了在 Apache/mod_wsgi 下重新加载的工作原理。

简而言之,使用 mod_wsgi 守护进程模式,并在更改后触摸 WSGI 脚本文件。

You shouldn't rely on the internal web.py reloading mechanism under Apache/mod_wsgi as not likely to work properly if at all. Disable the web.py reloading mechanism if you have enabled it in some way, and then read:

http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode

This explains how reloading works under Apache/mod_wsgi.

In short, use mod_wsgi daemon mode and after changes touch the WSGI script file.

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