Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个启动时间很长(几分钟)web.py的 python应用程序,我想在 Apache 中使用.mod_wsgi
web.py
mod_wsgi
长期的答案可能是“重写应用程序”。但在短期内,我想配置mod_wsgi为:
WSGIDaemonProcess processes=1
#2可行吗?或者,我可以使用其他权宜之计解决方案来托管此应用程序吗?
谢谢!
简单的。不要重新启动 Apache,不要设置最大请求数,也不要更改 WSGI 脚本文件中的代码。
您是说即使您完全不改动 Apache 也会看到重新启动?
是的,听起来你应该重新设计你的系统。需要这么长时间才能启动的 Web 进程太疯狂了。