Nginx缓存

本文介绍了Nginx缓存的配置,包括缓存文件的存放位置、缓存哪些请求、缓存有效期设定以及如何指定请求不被缓存。通过设置proxy_cache_key、proxy_cache_min_uses、proxy_cache_methods和proxy_cache_valid等指令,可以实现高效的缓存管理。同时,通过proxy_cache_bypass指令,可以控制某些请求绕过缓存,直接代理转发。
摘要由CSDN通过智能技术生成
  1. 缓存文件放在哪儿?
  2. 如何指定哪些请求被缓存?
  3. 缓存的有效期是多久?
  4. 如何指定哪些请求不被缓存?
1 缓存文件放在哪儿?

配置

$ vim $NGINX_HOME/conf/nginx.conf
worker_processes  auto;
events {
    use  epoll;
    worker_connections  65535;
}
http {
    proxy_cache_path /data/nginx/cache  keys_zone=one:10m  max_size=10g;
    upstream aidan.org{
        server 127.0.0.1:8881 weight=3;
        server 127.0.0.1:8882 weight=2;
        server 127.0.0.1:8883 weight=1;
    }
    server {
        listen       80;
        proxy_cache  one;
        server_name  aidan.org;
        location / {
            proxy_pass  http://aidan.org;
            proxy_set_header  Host  $host;
            proxy_set_header  X-Real-IP  $remote_addr;
        }
    }
}
$ nginx -t
$ nginx -s reload

这里面加了两行配置

proxy_cache_path /data/nginx/cache  keys_zone=one:10m  max_size=10g;
proxy_cache  one;

说明

指令说明
proxy_cache_path指定缓存位置、缓存名称、内存中缓存内容元数据信息大小限制、缓存总大小限制。缓存位置是一个目录应该先创建好,nginx并不会帮我们创建这个缓存目录
proxy_cache指定使用前面设置的缓存名称
2. 如何指定哪些请求被缓存?
  1. Nginx默认会缓存所有get和head方法的请求结果,缓存的key默认使用请求字符串
  2. 自定义key,例如 proxy_cache_key “ h o s t host hostrequest_uri$cookie_user”;
$ vim $NGINX_HOME/conf/nginx.conf
worker_processes  auto;
events {
    use  epoll;
    worker_connections  65535;
}
http {
    proxy_cache_path /data/nginx/cache  keys_zone=one:10m  max_size=10g;
    upstream aidan.org{
        server 127.0.0.1:8881 weight=3;
        server 127.0.0.1:8882 weight=2;
        server 127.0.0.1:8883 weight=1;
    }
    server {
        listen       80;
        proxy_cache  one;
        server_name  aidan.org;
        location / {
            proxy_pass  http://aidan.org;
            proxy_set_header  Host  $host;
            proxy_set_header  X-Real-IP  $remote_addr;
            proxy_cache_key "$host$request_uri$cookie_user";
        }
    }
}
$ nginx -t
$ nginx -s reload
  1. 指定请求至少被发送了多少次以上时才缓存,可以防止低频请求被缓存,例如:proxy_cache_min_uses 5;
  2. 指定哪些方法的请求被缓存,例如 proxy_cache_methods GET HEAD POST;
3 缓存有效期

默认情况下,缓存的内容是长期存留的,除非缓存的总量超出限制。可以指定缓存的有效期,例如:

  • 响应状态码为200 302时,10分钟有效 proxy_cache_valid 200 302 10m;
  • 对应任何状态码,5分钟有效 proxy_cache_valid any 5m;
$ vim $NGINX_HOME/conf/nginx.conf
worker_processes  auto;
events {
    use  epoll;
    worker_connections  65535;
}
http {
    proxy_cache_path /data/nginx/cache  keys_zone=one:10m  max_size=10g;
    upstream aidan.org{
        server 127.0.0.1:8881 weight=3;
        server 127.0.0.1:8882 weight=2;
        server 127.0.0.1:8883 weight=1;
    }
    server {
        listen       80;
        proxy_cache  one;
        server_name  aidan.org;
        location / {
            proxy_pass  http://aidan.org;
            proxy_set_header  Host  $host;
            proxy_set_header  X-Real-IP  $remote_addr;
            proxy_cache_key "$host$request$cookie_user";
            proxy_cache_valid 200 302 10m;
        }
    }
}
$ nginx -t
$ nginx -s reload
4. 如何指定哪些请求不被缓存?

proxy_cache_bypass 该指令响应来自原始服务器而不是缓存
例如:proxy_cache_bypass $cookie_nocache a r g n o c a c h e arg_nocache argnocachearg_comment;
如果任何一个参数值不为空或者不等0,nginx就不会查找缓存,直接进行代理转发。

$ vim $NGINX_HOME/conf/nginx.conf
worker_processes  auto;
events {
    use  epoll;
    worker_connections  65535;
}
http {
    proxy_cache_path /data/nginx/cache  keys_zone=one:10m  max_size=10g;
    upstream aidan.org{
        server 127.0.0.1:8881 weight=3;
        server 127.0.0.1:8882 weight=2;
        server 127.0.0.1:8883 weight=1;
    }
    server {
        listen       80;
        proxy_cache  one;
        server_name  aidan.org;
        location / {
            proxy_pass  http://aidan.org;
            proxy_set_header  Host  $host;
            proxy_set_header  X-Real-IP  $remote_addr;
            proxy_cache_key "$host$request$cookie_user";
            proxy_cache_valid 200 302 10m; 
            proxy_cache_bypass $cookie_nocache $arg_nocache$arg_comment;
        }
    }
}
$ nginx -t
$ nginx -s reload

网页缓存是由HTTP消息头中的"Cache-control"来控制的,常见的取值有private、no-cache、max-age、must-revalidate等,默认为private。
其作用根据不同的重新浏览方式分为以下几种情况。

Cache-directive说明
public所有内容都将被缓存(客户端和代理服务器都可缓存)
private内容只缓存到私有缓存中(仅客户端可以缓存,代理服务器不可缓存)
no-cache必须先与服务器确认返回的响应是否被更改,然后才能使用该响应来满足后续对同一个网址的请求。因此,如果存在合适的验证停牌(ETag),no-cache会发起往返通信来验证缓存的响应,如果资源未被更改,可以避免下载
no-store所有内容都不会被缓存到缓存或Internet临时文件中
must-revalidation/proxy-revalidation如果缓存内容失败,请求必须发送到服务器、代理以进行重新验证
max-age=xxx(xxx is numeric)缓存的内容将在xxx秒失效,这个选项只在HTTP 1.1可用,并如果和Last-Modified一起使用时,优先级较高

示例:

$ vim /usr/local/nginx/conf/nginx.conf
worker_processes  auto;
events {
    use  epoll;
    worker_connections  65535;
}
http {
    proxy_cache_path /data/nginx/cache  keys_zone=one:10m  max_size=10g;
    upstream aidan.org{
        server 127.0.0.1:8881 weight=3;
        server 127.0.0.1:8882 weight=2;
        server 127.0.0.1:8883 weight=1;
    }
    server {
        listen       80;
        proxy_cache  one;
        server_name  aidan.org;
        location / {
            proxy_pass  http://aidan.org;
            proxy_set_header  Host  $host;
            proxy_set_header  X-Real-IP  $remote_addr;
            expires 1y;
            proxy_cache_valid any 5m;
            add_header Cache-Control "public";
            add_header X-proxy-Cache $upstream_cache_status;
        }
    }
}
$ nginx -t
$ nginx -s reload
[root@localhost cache]# curl aidan.org/a/a -I
HTTP/1.1 200 
Server: nginx/1.16.1
Date: Mon, 23 Sep 2019 16:01:47 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 77
Connection: keep-alive
Expires: Tue, 22 Sep 2020 16:01:47 GMT
Cache-Control: max-age=31536000
Cache-Control: public
X-proxy-Cache: MISS

[root@localhost cache]# curl aidan.org/a/a -I
HTTP/1.1 200 
Server: nginx/1.16.1
Date: Mon, 23 Sep 2019 16:01:49 GMT
Content-Type: text/plain;charset=UTF-8
Content-Length: 77
Connection: keep-alive
Expires: Tue, 22 Sep 2020 16:01:49 GMT
Cache-Control: max-age=31536000
Cache-Control: public
X-proxy-Cache: HIT

第一次MISS,第二次命中。

评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值