服务工作者缓存是否支持缓存控制头?例如,如果缓存中的条目具有标题cache-control: no-store
或cache-control: max-age=60
,match()
会尊重这些条目吗?
尽管响应中出现标题CACHE HIT
,但以下代码会输出cache-control: no-store
。 (我认为同样的问题适用于max-age
。)
function warm(c) {
var req = new Request("/foo.txt");
var res = new Response("hello", {
status: 200,
statusText: "OK",
headers: new Headers({
"cache-control": "no-store",
"content-type": "text/plain"
})
});
return c.put(req, res).then(function () { return c; });
}
function lookup(c) {
return c.match(new Request("/foo.txt")).then(function (r) {
return r ? "CACHE HIT" : "CACHE MISS";
});
}
function deleteAllCaches() {
return caches.keys().then(function (cacheNames) {
return Promise.all(
cacheNames.map(function (cacheName) {
return caches.delete(cacheName);
})
);
});
}
self.addEventListener('install', function (event) {
event.waitUntil(
deleteAllCaches()
.then(caches.open.bind(caches, 'MYCACHE'))
.then(warm)
.then(lookup)
.then(console.log.bind(console))
.then(function () { return true; })
);
});
答案 0 :(得分:5)
服务工作者缓存的行为与标准RFC-compliant HTTP cache不同。特别是,它忽略了与“新鲜度”相关的所有标题(例如cache-control
)。但请注意,它的行为与vary
标题相同。 (参见规范中的cache resolution algorithm。)
如果您需要符合HTTP标准的缓存行为,则需要在现有缓存的功能之上对其进行分层。