В двух словах я пытаюсь
if (beresp.ttl < 120s) {
set beresp.ttl = 120s;
unset beresp.http.Cache-Control;
}
В моем файле конфигурации VCL, и он не работает. Более подробно ниже:
Вот мой заголовок запроса:
Accept:text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Accept-Encoding:gzip, deflate, sdch
Accept-Language:en-US,en;q=0.8
Cache-Control:max-age=0
Connection:keep-alive
Cookie:portal1 =dsfgsdfgsdfg; portal1 =sdfgsdfgsdfg; PHPSESSID=randomstring
Host:216.66.35.169
Upgrade-Insecure-Requests:1
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36
Обратите внимание, что Chrome по умолчанию устанавливает Cache-Control max-age = 0 всякий раз, когда кто-то вводит URL-адрес и в адресную строку и нажимает клавишу ввода, как я полагаю. Файлы cookie — это php по умолчанию через session_start, а также файлы cookie пользовательских сеансов.
Сейчас я хочу игнорировать куки и заголовок контроля кэша.
Вот моя настройка VCL:
sub vcl_recv {
# Happens before we check if we have this in cache already.
#
# Typically you clean up the request here, removing cookies you don't need,
# rewriting the request, etc.
}
sub vcl_backend_response {
# Happens after we have read the response headers from the backend.
#
# Here you clean the response headers, removing silly Set-Cookie headers
# and other mistakes your backend does.
# set beresp.ttl = 60s;
if (beresp.ttl < 120s) {
set beresp.ttl = 120s;
unset beresp.http.Cache-Control;
}
}
sub vcl_deliver {
# Happens when we have all the pieces we need, and are about to send the
# response to the client.
#
# You can do accounting or modifying the final object here.
if (obj.hits > 0) {
set resp.http.X-Cache = "HIT";
} else {
set resp.http.X-Cache = "MISS";
}
}
Заголовок ответа:
Accept-Ranges:bytes
Age:0
Connection:keep-alive
Content-Length:24
Content-Type:text/html
Date:Thu, 27 Aug 2015 13:48:58 GMT
Server:Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8q PHP/5.3.5
Via:1.1 varnish-v4
X-Cache:MISS
X-Powered-By:PHP/5.3.5
X-Varnish:17
Что мисс.
Php на бэкэнд-сервере просто выводит случайное число:
<?php
echo 'Hello worlds';
echo '<hr/>';
echo rand();
?>
Куки предотвращают попадание в кеш. Попробуйте удалить куки в vcl_recv
а также vcl_backend_response
,
sub vcl_recv {
unset req.http.cookie;
}
И в vcl_backend_response
sub vcl_backend_response {
if (beresp.ttl < 120s) {
unset beresp.http.cookie;
unset beresp.http.Set-Cookie;
set beresp.ttl = 120s;
unset beresp.http.Cache-Control;
}
}
Других решений пока нет …