Web.py mod_wsgi 自动重载
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该依赖 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.