javascript - Difference between caches.match and cache.match - Stack Overflow

We use caches.match(event.request) in the service worker to do "Cache only strategy". I notic

We use caches.match(event.request) in the service worker to do "Cache only strategy". I noticed that we also return cache.match('someURL') right after then of caches.open("cache-name") promises. This is quite confusing.

What is the difference between caches.match(event.request) and cache.match('someURL'). What is the use case for each of it?

Example cases:

Caches.match

self.addEventListener('fetch', function(event) {
  event.respondWith(caches.match(event.request)); 
});

Cache.match

self.addEventListener('fetch', function(event) {
  event.respondWith(
    caches.open('mysite-dynamic').then(function(cache) {
      return cache.match(event.request).then(function (response) {
        return response || fetch(event.request).then(function(response) {
          cache.put(event.request, response.clone());
          return response;
        });
      });
    })
  );
});

We use caches.match(event.request) in the service worker to do "Cache only strategy". I noticed that we also return cache.match('someURL') right after then of caches.open("cache-name") promises. This is quite confusing.

What is the difference between caches.match(event.request) and cache.match('someURL'). What is the use case for each of it?

Example cases:

Caches.match

self.addEventListener('fetch', function(event) {
  event.respondWith(caches.match(event.request)); 
});

Cache.match

self.addEventListener('fetch', function(event) {
  event.respondWith(
    caches.open('mysite-dynamic').then(function(cache) {
      return cache.match(event.request).then(function (response) {
        return response || fetch(event.request).then(function(response) {
          cache.put(event.request, response.clone());
          return response;
        });
      });
    })
  );
});
Share Improve this question edited May 12, 2018 at 15:01 Rose G asked May 12, 2018 at 12:20 Rose GRose G 6181 gold badge9 silver badges13 bronze badges 3
  • what are caches and cache? – Thomas Commented May 12, 2018 at 12:22
  • Without context for what caches and cache are, it's hard to say the exact difference. Still, they are two possibly unrelated objects. – VLAZ Commented May 12, 2018 at 12:23
  • Sorry if my question is quite confusing. I added example cases which uses caches.match and cache.match in Service Worker – Rose G Commented May 12, 2018 at 15:02
Add a ment  | 

2 Answers 2

Reset to default 7

cache.match searches for an item in a specific cache, while caches.match searches all caches for a match.

I guess you didn't know that the word "caches" reffers to CacheStorage Basically caches or the cache storage stores all caches while cache is just a named cache inside the cache storage. Basically caches.match should get you the instance of the cache storage while cache.match gives you the instance of a specific cache.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743645987a4483764.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信