我想使用Varnish 4.0.3 我想分割缓存过程,无论cookie是否具有特定的密钥和值。
当用户访问mypage时,如果他们的浏览器有“loged_in = true”cookie,我不想缓存页面。 此外,如果它没有cookie,我想缓存mypage。
但这两种设置都不起作用 它根本不缓存。
另外,当用户进入“类别”页面时,清漆会正确缓存页面。
这是我的default.vcl。
有没有人告诉我我有什么问题?
vcl 4.0;
import directors;
backend ap1 {
.host = "192.168.0.1";
.port = "80";
.first_byte_timeout = 200s;
.probe = {
.url = "/";
.interval = 5s;
.timeout = 1 s;
.window = 5;
.threshold = 3;
.initial = 1;
}
}
backend ap2 {
.host = "192.168.0.2";
.port = "80";
.first_byte_timeout = 200s;
.probe = {
.url = "/";
.interval = 5s;
.timeout = 1 s;
.window = 5;
.threshold = 3;
.initial = 1;
}
}
sub vcl_init{
new ws_hash = directors.hash();
ws_hash.add_backend(ap1, 1.0);
ws_hash.add_backend(ap2, 1.0);
new ws_rand = directors.random();
ws_rand.add_backend(ap1, 1.0);
ws_rand.add_backend(ap2, 1.0);
}
sub vcl_recv{
if( (req.url ~ "(category)") ) {
// Cache
set req.backend_hint = ws_hash.backend(req.url + ":" + req.http.host);
return(hash);
}
if( (req.url ~ "(mypage)") ) {
if (req.http.Cookie ~ "(loged_in=true)" ) {
// NO Cache
set req.backend_hint = ws_rand.backend();
return(pass);
}
// Cache
set req.backend_hint = ws_hash.backend(req.url + ":" + req.http.host);
return(hash);
}
// NO Cache
set req.backend_hint = ws_rand.backend();
return(pass);
}
sub vcl_deliver {
if (obj.hits > 0) {
set resp.http.V-Cache = "HIT";
} else {
set resp.http.V-Cache = "MISS";
}
}