django 应用程序使用的解释器

发布于 2024-07-27 12:57:56 字数 232 浏览 5 评论 0原文

我已经用 apache 和 mod_python 托管了我的 django 应用程序。 当我浏览 mod_python 文档时,我发现有一种方法可以知道我的应用程序在哪个解释器下运行(通过使用 req.interpreter)。

我尝试在 django 中通过检查请求对象来检查这一点。 但我无法弄清楚(request.interpreter 不存在)。

有没有办法在 django 中获取解释器名称?

I have hosted my django application with apache and mod_python. When i was going through the mod_python documentation, I found that there is a way to know under which interpreter my application is running (By using req.interpreter).

I tried to check that in django, by checking request object. But I couldn't figure out(request.interpreter doesn't exist).

Is there a way to get interpreter name in django?

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

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

发布评论

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

评论(1

一指流沙 2024-08-03 12:57:56
from mod_python import apache
apache.log_error("INTERPRETER %s" % apache._interpreter)

然后检查 Apache 错误日志文件。

from mod_python import apache
apache.log_error("INTERPRETER %s" % apache._interpreter)

Then check the Apache error log file.

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