CherryPy + Apache2 - 响应缓存
我正在尝试开发一个基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不是来自cherrypy文档(而是来自Django 使用 mod_python 运行开发服务器),但也许它有帮助:
It's not from the cherrypy docs (but from Django's Running a development server with mod_python), but maybe it helps: