对于我的一生,我无法弄清楚如何让清漆忽略 500 个内部服务器错误的缓存。基本上,如果有人点击清漆并返回 500 内部服务器错误,我希望清漆不缓存该页面(设置 0s ttl/宽限期?)。我正在使用 varnish 3.0.3,这是我的 VCL。默认情况下,我想将页面缓存 30 天。
sub vcl_fetch {
# Set 30-day TTL
set beresp.ttl = 2592000 s;
set beresp.grace = 15d; /* The max amount of time to keep object in cache */
if (beresp.status == 301 || beresp.status == 302) {
return (hit_for_pass);
}
# Serve pages from the cache should we get a sudden error and re-check in one minute
if (beresp.status >= 500) {
set beresp.grace = 1s;
set beresp.ttl = 1s;
return (hit_for_pass);
}
# Unset the "etag" header (suggested)
unset beresp.http.etag;
return(deliver);
}
所以,用英语:如果返回 500 内部服务器...... X-CACHE 应该显示 MISS。当我刷新页面时,如果它仍然是 500 内部服务器,那么它应该再次显示一个 MISS。如果页面成功传递,它应该显示一个 HIT。