CherryPy + Apache2 - 响应缓存

发布于 2024-10-12 12:26:27 字数 332 浏览 6 评论 0原文

我正在尝试开发一个基于 CherryPy 的系统。 我实际上使用的是 Apache2 Web 服务器 + mod_python。 我遇到下一个问题:

当我更新cherrypy应用程序的代码时,刷新浏览器多次,结果与编辑之前相同。 它似乎在某处缓存响应。 当我重新启动 Apache 服务器时,问题解决了,但是尽管更新了我的应用程序的源代码,但在不重新启动 Apache 的情况下刷新浏览器总是返回相同的响应。

如何获取 CherryPy 应用程序的最新版本,而无需每次在其上制作版本时重新启动网络服务器?

非常感谢!

I'm trying to develop a CherryPy based system.
I'm actually using Apache2 web server + mod_python.
I have the next problem:

When I update the code of my cherrypy app, refresh several times the browser, and the result is the same as before editing.
It seems to be caching the response somewhere.
When I restart the Apache server, the problem is solved, but refreshing the browser without restarting apache allways return the same response despite updating the source code of my app.

How can I get the last version of my CherryPy app without having to restart the web server each time I make an edition on it?

Thanks a lot!

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

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

发布评论

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

评论(1

樱花落人离去 2024-10-19 12:26:27

它不是来自cherrypy文档(而是来自Django 使用 mod_python 运行开发服务器),但也许它有帮助:

只需在 httpd.conf 文件中设置 MaxRequestsPerChild 1 即可强制 Apache 为每个请求重新加载所有内容。

It's not from the cherrypy docs (but from Django's Running a development server with mod_python), but maybe it helps:

Just set MaxRequestsPerChild 1 in your httpd.conf file to force Apache to reload everything for each request.

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