gpt4 book ai didi

python - 如何禁用 nginx+uwsgi+python 服务器的缓存?

转载 作者:太空宇宙 更新时间:2023-11-04 08:50:47 28 4
gpt4 key购买 nike

我正在尝试使用 nginx、uwsgi 和 python 开发一个全新的网站。问题是,如果我更改 uwsgi 指向的文件并刷新页面,我会得到由该文件的先前版本生成的 HTML。似乎 nginx、uwsgi 或两者都在缓存我网站的代码和/或响应。我一直在阅读 uwsgi 缓存,但无法使用 --cache2 标志和 --cache_* 标志禁用缓存。我找到了 this other question并尝试使用

proxy_no_cache "1";
proxy_cache_bypass "1";

在服务器的位置字典中(位于/etc/nginx/sites-available/mysite),但是它仍然缓存页面。我过去曾将 web2py 与 nginx 和 uwsgi 一起使用,当我更新 Controller 或 View 时,它似乎没有这个问题。

这是我的站点文件:

server { 
listen 80 default_server;
listen [::]:80 default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
include snippets/snakeoil.conf;
server_name _;
location / {
include uwsgi_params;
uwsgi_pass 127.0.0.1:3031;
}
}

这是 init.d 脚本使用的执行程序:

uwsgi --master --processes 4 --threads 2 --die-on-term -s /tmp/mysock.sock --socket :3031 --uid www-data --gid www-data --vacuum --wsgi-file /path/to/my/python/file.py

这是加载的 python 文件:

def application(environ, start_response): 
start_response('200 OK', [('Content-Type', 'text/html')])
return ["<h1>Hello World</h1>"]

我知道缓存可以提高性能,所以我打算在生产环境中重新启用它,但是在启用它的情况下进行开发是一件很痛苦的事情......我做错了什么?

我现在唯一的解决方法是每次进行更改时重新启动 uwsgi 服务:(

最佳答案

已解决

好的,多亏了管豪,我弄明白了。他对具有“自动重新加载”功能的 Web 框架的评论使我走上了确定 web2py 在修改 Controller 、模型和 View 时如何无缝工作的道路。事实证明,我必须在我的更改生效之前重新加载 uwsgi,最后我找到了一种方法(虽然不是最好的)允许我进行开发而不需要 shell 发出 /etc/init .d/mysiteapp restart 每次我进行更改时。根据 uWSGI 文档,存在一个 --touch-reload 标志,您可以在启动 uWSGI 时指定它,当某个文件被修改/触摸时将重新加载它。

touch-reload
argument: required_argument
parser: uwsgi_opt_add_string_list
flags: UWSGI_OPT_MASTER
help: reload uWSGI if the specified file is modified/touched

我只是将标志的参数设置为位于网站根目录中的名为 reload 的文件,当我上传更改时,我也只是上传该文件(在最后) .它完美无缺!谢谢你的提示!我有两天时间可以接受我自己的答案,所以如果有人有比这个更好的方法,请随时发布。

---更新---

事实证明,还有更好的方法!我偶然发现了this question有一个不被接受的答案,完全解决了这个问题(到目前为止)。使用这种方法,我什至不必触摸 reload 文件。我只是在 init.d 脚本中执行时将以下标志和参数添加到 uwsgi 中:

--py-autoreload 1

我不确定为什么我永远无法在 Google 搜索中找到答案等等,但现在我有了完美的解决方案,我就不在乎了!请注意,任何使用它的人,您应该在生产中删除该标志。

关于python - 如何禁用 nginx+uwsgi+python 服务器的缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35620194/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com