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.
我正在构建一个 Bottle wsgi 应用程序并试图了解 mod_wsgi 如何处理对 wsgi 脚本文件的每个 http 请求。
在脚本完成(然后释放它)之前,每个请求是否使用一个单独的进程,或者一个进程是否可以使用线程处理多个请求?
任何一个都是可能的。请参阅有关此问题的mod_wsgi 文档。我相信默认是使用 15 个线程和 1 个进程。WSGIDaemonProcess配置指令允许您在 Apache 中控制它。