缓存清除#

允许清除缓存内容。

加载模块#

main{} 上下文中连接模块:

load_module modules/ngx_http_cache_purge_module.so;

配置示例#

log_format test_cache '[$time_local] "$request" '
                      '$status $body_bytes_sent rt="$request_time" '
                      'ucs="$upstream_cache_status" us="$upstream_status" '
                      'ubr=$upstream_bytes_received';

proxy_cache_path /var/cache/angie/cache keys_zone=cache_zone:10m;

server {
    listen 80 default_server;

    location / {
        access_log /var/log/angie/cache-access.log test_cache;
        proxy_pass http://127.0.0.1:8080;

        proxy_cache cache_zone;
        proxy_cache_valid 10m;
        proxy_cache_key $uri$is_args$args;
        proxy_cache_purge PURGE from 127.0.0.1;
    }
}

准备演示#

从服务器请求文件:

$ curl -s -o testf1.txt http://127.0.0.1/storage/testf1.txt

检查缓存(未命中 - 文件未在缓存中找到):

[05/Mar/2025:17:44:24 +0300] "GET /storage/testf1.txt HTTP/1.1" 200 519 rt="0.001" ucs="MISS" us="200" ubr=752

重新请求(命中 - 文件从缓存中提供):

$ curl -s -o testf1.txt http://127.0.0.1/storage/testf1.txt
[05/Mar/2025:17:46:02 +0300] "GET /storage/testf1.txt HTTP/1.1" 200 519 rt="0.000" ucs="HIT" us="-" ubr=-

清除缓存#

$ curl -X PURGE http://127.0.0.1/storage/*

<html><head><title>成功清除</title></head><body bgcolor="white"><center><h1>成功清除</h1><p>键 : /storage/*</p></center></body></html>

在清除缓存后请求文件(未命中 - 文件重新加载):

$ curl -s -o testf1.txt http://127.0.0.1/storage/testf1.txt
[05/Mar/2025:17:52:05 +0300] "GET /storage/testf1.txt HTTP/1.1" 200 519 rt="0.002" ucs="MISS" us="200" ubr=752

为缓存清除配置单独位置的示例#

proxy_cache_path /var/cache/angie/cache keys_zone=cache_zone:10m;

map $uri $wpurgeuri {
    "~/purge(?<wpurge>/.*)" $wpurge;
    default $uri;
}

server {
    listen 80 default_server;

    location / {
        access_log /var/log/angie/cache-access.log test_cache;
        proxy_pass http://127.0.0.1:8080;

        proxy_cache cache_zone;
        proxy_cache_valid 10m;
        proxy_cache_key $uri$is_args$args;
    }

    location /purge {
        allow 127.0.0.1;
        deny all;
        proxy_cache_purge cache_zone $wpurgeuri$is_args$args;
    }
}

在这种情况下清除缓存的请求:

$ curl -X PURGE http://127.0.0.1/purge/storage/*

附加信息#

指令和源代码的完整文档可在以下网址找到: nginx-modules/ngx_cache_purge