用到缓存就是为了减少后端的压力,提高网站并发。在网站设计中,为了更好的去中心化,我们会尽量将请求集中到前端,在前端就能处理掉。
常用的缓存类型有客户端缓存、代理缓存、服务端缓存等。
客户端缓存【缓存存到本地,如数据存到用户的浏览器缓存中,从本地读取】代理缓存【缓存存到代理或中间件上,如从服务端获取到的数据放置在nginx上,访问时直接读取nginx的缓存】服务端缓存【缓存存到服务端,经常使用redis和memchache,比如key-value格式的数据】
代理缓存简略示意:
nginx代理缓存配置:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
proxy_cache_path /opt/www/cache levels=1:2 keys_zone=test_cache:10m max_size=10g inactive=60m use_temp_path= off ;
server {
listen 80;
server_name cache.test.com;
#rewrite ^/(.*)$ https://${server_name}$1 permanent; #跳转到https
if ($request_uri ~ ^/(test.html|login|register| password |\/reset)) {
set $cookie_nocache 1;
}
location / {
proxy_cache test_cache; #要和proxy_cache_path 的 keys_zone值相等
proxy_pass http://127.0.0.1:8081;
proxy_cache_valid 200 304 12h;
proxy_cache_valid any 10m;
proxy_cache_key $host$uri$is_args$args;
proxy_no_cache $cookie_nocache $arg_nocache $arg_comment;
proxy_no_cache $http_pragma $http_authorization;
}
}
|
参数解释:
- proxy_cache_path 缓存文件路径
- levels 设置缓存文件目录层次;levels=1:2 表示两级目录
- keys_zone 设置缓存名字、开辟空间的大小,10m表示10 mb的大小
- max_size 此目录最大空间大小,10g表示10 gb的大小。假如超过了10g,nginx会根据自己的淘汰删除规则删除一部分缓存数据,默认覆盖掉缓存时间最长的缓存数据。
- inactive 在指定时间内没人访问则被删除,60m表示60分钟
- use_temp_path 用来存放临时文件,建议设置为off
关于更多的参数可以参考nginx官网:module ngx_http_proxy_module:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_path
- proxy_cache test_cache 表示已经开启了代理缓存,若不想使用代理缓存,将该值配置成 off。
- proxy_pass 代理的地址
- proxy_cache_valid 200 304 12h;状态码为200,304的响应过期时间为 12h。
- proxy_cache_valid any 10m;除了200和304状态码的其它状态码的缓存时间为10分钟。
- proxy_cache_key $host$uri$is_args$args; 设置默认缓存的key。$is_args表示请求中的url是否带参数,如果带参数,$is_args值为"?"。如果不带参数,则是空字符串。$args表示http请求中的参数。
- proxy_no_cache 当url中匹配到了 test.html , login, register, password 和 reset 时,不缓存此url所对应的页面。
配置完毕,先检查下语法是否正确nginx -tc /etc/nginx/nginx.conf,再重载服务nginx -s reload
附:平滑重启nginx
1
2
3
4
5
6
7
8
9
10
11
|
[root@localhost nginx]# nginx -s reload
[root@localhost nginx]# ps -elf|grep nginx
1 s root 10175 1 0 80 0 - 27830 sigsus 09:52 ? 00:00:00 nginx: master process nginx
5 s www 11165 10175 0 80 0 - 28893 ep_pol 18:10 ? 00:00:00 nginx: worker process
5 s www 11166 10175 0 80 0 - 28893 ep_pol 18:10 ? 00:00:00 nginx: worker process
5 s www 11167 10175 0 80 0 - 27830 ep_pol 18:10 ? 00:00:00 nginx: cache manager process
|
重启完成这里会多一个cache manager,其主要作用和memcached的lru算法相似,删除过期缓存。而如果缓存没过期其上有服务器数据发生变化则依旧访问是错误的数据。可以通过程序实现。
总结
到此这篇关于如何利用nginx做代理缓存的文章就介绍到这了,更多相关nginx做代理缓存内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_32737755/article/details/121969064