将 Django 与 mod_wsgi 结合使用

发布于 2024-09-01 14:08:16 字数 134 浏览 4 评论 0原文

当您将 Django 与 mod_wsgi 一起使用时,当用户从浏览器向服务器发出请求时到底会发生什么? apache 是否会在启动时加载您的 Django 应用程序并使其在单独的进程中运行?它会为每个 HTTP 请求创建一个新的 Python 进程吗?

When you use Django with mod_wsgi, what exactly happens when a user makes a request to the server from a browser? Does apache load up your Django app when it starts and have it running in a separate process? Does it create a new Python process for every HTTP request?

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

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

发布评论

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

评论(1

私藏温柔 2024-09-08 14:08:23

在嵌入模式下,Django 应用程序是 httpd 工作线程的一部分。在守护进程模式下,Django 应用程序是一个单独的进程,httpd 工作线程通过套接字与其进行通信。无论哪种情况,WSGI 接口都是相同的。

In embedded mode, the Django app is part of the httpd worker. In daemon mode, the Django app is a separate process and the httpd worker communicates with it over a socket. In either case, the WSGI interface is the same.

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