nginx 缓存

nginx的缓存机制

proxy模块指令

配置块名称名称
httpproxy_cache_path指定缓冲区的路径
levels缓存目录级最高三层,每层1-2个字符表示,比如:1:1:2 三层
keys_zone 缓存块名称及内存块大小,比如:cache_item:500m表示声明一个名为cache_item大小为500m,超出大小后最早的被清除
max_size缓存区硬盘的最大值,超出闲置数据将被清除
inactive最长闲置时间,比如:10d ,表示一个数据被闲置10天则将被清除
locationproxy_cache指定缓冲区,对应keys_zone中的设定的值
proxy_cache_key通过参数拼装参数key如: h o s t host hosturi i s a r g s is_args isargsargs 则会已全部md5值作为key
proxy_cache_valid对不同的状态码设置缓存有效期

192.168.34.165

nginx.conf加入下面的代码:
proxy_cache_path /cache/nginx levels=1:2 keys_zone=cache_filename:10m max_size=5g inactive=60m use_temp_path=off;

注:位置在server外面
在这里插入图片描述

/vhost/study_nginx.conf

server{
   listen       80;
   server_name  www.study_nginx.com;
   root   /www/study_nginx;
   index index.html index.htm;

   location /api/ { 
      proxy_cache test_cache;
      proxy_pass http://www.nginx_cache.com:8080/api/;
      proxy_cache_valid 200 304 12h;
      proxy_cache_valid any 10m;
      proxy_cache_key $host$uri$is_args$args;
      include proxy_params;
    } 
    location ~ /clear_cache(.*) {
     allow   all;
     proxy_cache_purge test_cache $host$1$is_args$args;
    }
}

192.168.34.135【代理服务器】

/vhost/nginx_cache.conf

server{
   listen       8080;
   server_name  www.nginx_cache.com;
   root   /www/nginx_cache;
   index index.html index.htm;

   location ~ \.php$ {
       root           /www/nginx_cache;
       fastcgi_pass   127.0.0.1:9000;
       fastcgi_index  index.php;
       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name ;
       include        fastcgi_params;
   }
}

/www/nginx_cache/api/index.php

在这里插入图片描述
访问:http://www.study_nginx.com/api/index.php
在这里插入图片描述
查看缓存文件【/cache/nginx/e/2b】
在这里插入图片描述
修改/www/nginx_cache/api/index.php 内容。再次访问:http://www.study_nginx.com/api/index.php。
在这里插入图片描述
发现还是上面的页面内容。缓存成功。

清除缓存

ngx_cache_purge介绍
若清除缓存时出现异常:

12180#0: unknown directive "proxy_cache_purge" in /vhost/blog.conf:24:

则表明缺失这个模块,nginx需重新编译,如下:

ngx_cache_purge是nginx的第三方模块,能够帮助我清除nginx中的缓存。

./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_gzip_static_module --with-http_stub_status_module --with-file-aio --with-http_realip_module --with-http_ssl_module --with-pcre=/home/pcre-8.44 --with-zlib=/home/zlib-1.2.11 --with-openssl=/home/openssl-1.1.1g --add-module=/home/ngx_cache_purge-2.3

make -j2

make instal

配置/vhost/study_nginx.conf

location ~ /clear_cache(.*) {
     allow   all;
     proxy_cache_purge cache_filename $host$1$is_args$args;
}
#cache_name 需清除的缓存文件名

访问:http://www.study_nginx.com/clear_cache/api/index.php
在这里插入图片描述
再次访问:http://www.study_nginx.com/api/index.php。
在这里插入图片描述
发现页面显示了新修改的内容,缓存已删除。

控制nginx缓存

/vhost/study_nginx.conf

 set $a 0;
 if ( $request_uri ~ \.php$) {
      set $a 1;
 }
 proxy_no_cache $a;

在这里插入图片描述
先访问:http://www.study_nginx.com/clear_cache/api/index.php
删除缓存文件。
再次访问:http://www.study_nginx.com/api/index.php

然后查看是否生成缓存文件。
在这里插入图片描述

proxy_no_cache
参数中的值可以设置多个,但是多个值中,只要有一个是不为0的,就不会缓存数据。

nginx浏览器缓存

/vhost/study_nginx.conf

 location \ {
        expires 1m;
   }

访问:http://www.study_nginx.com/
在这里插入图片描述
在这里插入图片描述

发现第2次访问之后状态为304。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值