Re: [whatwg/fetch] Define the "Preload Cache" (#590)

Wanted to know if people expect that `preload cache` we're trying to define here also covers the `prefetch` case or not. From impl perspective they sit at different layers and behave slightly different (i.e. they have different lifetime), but from developers perspective the behavior may look pretty similar.

To give more context Chromium's current impl is like this: preload cache sits next to a memory cache, i.e. it's above the network stack and also above SW.  Prefetch basically just puts things in HTTP cache (and never put them in memory cache or `preload cache` equivalent thing in Chromium). Both preload and prefetch allow subsequent fetches to succeed regardless of the Cache control up to a certain period, but that effect doesn't stick across different navigations / different fetch groups for preload, while it does for prefetch.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/590#issuecomment-380344908

Received on Wednesday, 11 April 2018 06:44:29 UTC