Если вам нужно узнать, в каком кеше находится ответ, боюсь, вам нужно будет вызывать match
для каждого из кешей по отдельности, пока не найдете тот, где есть совпадение.
код может выглядеть примерно так:
async function findCachedResponse(request) {
const cacheKeys = await caches.keys();
const openCaches = await Promise.all(cacheKeys.map(cacheKey => caches.open(cacheKey)));
const matches = await Promise.all(openCaches.map(cache => cache.match(request));
const i = matches.findIndex(match => match !== undefined);
if (i !== -1) {
return { cache: cacheKeys[i], response: matches[i] };
} else {
return undefined;
}
}