去评论
dz插件网

nginx有两种缓存机制:fastcgi_cache和proxy_cache

左右不逢缘
2024/02/10 20:11:53
nginx有两种缓存机制:fastcgi_cache和proxy_cache
下面我们来说说这两种缓存机制的区别吧
proxy_cache作用是缓存后端服务器的内容,可能是任何内容,包括静态的和动态的
fastcgi_cache作用是缓存fastcgi生成的内容,很多情况是php生成的动态内容
proxy_cache缓存减少了nginx与后端通信的次数,节省了传输时间和后端带宽
fastcgi_cache缓存减少了nginx与php的通信次数,更减轻了php和数据库的压力。

proxy_cache缓存设置
#注:proxy_temp_path和proxy_cache_path指定的路径必须在同一分区
proxy_temp_path   /data0/proxy_temp_dir;
#设置Web缓存区名称为cache_one,内存缓存空间大小为200MB,1天没有被访问的内容自动清除,硬盘缓存空间大小为30GB。
  1. proxy_cache_path  /data0/proxy_cache_dir  levels=1:2   keys_zone=cache_one:200m inactive=1d max_size=30g;
  2. server
  3.   {
  4.     listen       80;
  5.     server_name  www.yourdomain.com 192.168.8.42;
  6.     index index.html index.htm;
  7.     root  /data0/htdocs/www;
  8.     location /
  9.     {
  10.          #如果后端的服务器返回502、504、执行超时等错误,自动将请求转发到upstream负载均衡池中的另一台服务器,实现故障转移。
  11.          proxy_next_upstream http_502 http_504 error timeout invalid_header;
  12.          proxy_cache cache_one;
  13.          #对不同的HTTP状态码设置不同的缓存时间
  14.          proxy_cache_valid  200 304 12h;
  15.          #以域名、URI、参数组合成Web缓存的Key值,Nginx根据Key值哈希,存储缓存内容到二级缓存目录内
  16.          proxy_cache_key $host$uri$is_args$args;
  17.          proxy_set_header Host  $host;
  18.          proxy_set_header X-Forwarded-For  $remote_addr;
  19.          proxy_pass http://backend_server;
  20.          expires      1d;
  21.     }
  22.     #用于清除缓存,假设一个URL为http://192.168.8.42/test.txt,通过访问http://192.168.8.42/purge/test.txt就可以清除该URL的缓存。
  23.     location ~ /purge(/.*)
  24.     {
  25.      #设置只允许指定的IP或IP段才可以清除URL缓存。
  26.      allow            127.0.0.1;
  27.      allow            192.168.0.0/16;
  28.      deny            all;
  29.      proxy_cache_purge    cache_one   $host$1$is_args$args;
  30.     }   
  31.     #扩展名以.php、.jsp、.cgi结尾的动态应用程序不缓存。
  32.     location ~ .*.(php|jsp|cgi)?$
  33.     {
  34.          proxy_set_header Host  $host;
  35.          proxy_set_header X-Forwarded-For  $remote_addr;
  36.          proxy_pass http://backend_server;
  37.     }
  38.     access_log  off;
  39.   }
  40. }

fastcgi_cache缓存设置
#定义缓存存放的文件夹
fastcgi_cache_path   /tt/cache  levels=1:2 keys_zone=NAME:2880m inactive=2d max_size=10G;

#定义缓存不同的url请求
  1. fastcgi_cache_key "$scheme$request_method$host$uri$arg_filename$arg_x$arg_y";
  2. server {
  3.     listen       8080;
  4.     server_name  www.example .com;
  5.     location / {
  6.         root   /www;
  7.         index  index.html index.htm index.php;
  8.     }
  9.     location ~ (|.php)$ {
  10.         root           /www;
  11.         fastcgi_pass   127.0.0.1:9000;
  12.         fastcgi_cache   NAME;
  13.         fastcgi_cache_valid 200 48h;
  14.         fastcgi_cache_min_uses  1;
  15.         fastcgi_cache_use_stale error  timeout invalid_header http_500;
  16.         fastcgi_index  index.php;
  17.         fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
  18.         include        fastcgi.conf;
  19.         #设置缓存的过程中发现无法获取cookie,经查需要定义这句话
  20.         fastcgi_pass_header Set-Cookie;
  21.     }
  22.     log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
  23.               '$status $body_bytes_sent "$http_referer" '
  24.               '"$http_user_agent" $http_x_forwarded_for';
  25.    access_log  /httplogs/access.log  access;
  26. }
总的来说  nginx的proxy_cache和fastcgi_cache的缓存配置差不多。