扫码关注官方订阅号
proxy_cache_min_uses 3; proxy_cache_bypass $cookie_nocache $arg_nocache;
proxy_cache_min_uses 3; #3次查询之后结果会缓存 proxy_cache_bypass $cookie_nocache $arg_nocache;
http://nginx.org/cn/docs/http/ngx_http_proxy_module.html
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
proxy_cache_min_uses 3; #3次查询之后结果会缓存
proxy_cache_bypass $cookie_nocache $arg_nocache;
cookie_nocache和arg_nocache这两个变量不为空时该次请求结果不从缓存中取出
http://nginx.org/cn/docs/http/ngx_http_proxy_module.html