I need “no-cache” header without “no-store”
-
I need no-cache header without no-store.
no-cache and no-store are 2 different things:
Note that no-cache does not mean “don’t cache”. no-cache allows caches to store a response but requires them to revalidate it before reuse. If the sense of “don’t cache” that you want is actually “don’t store”, then no-store is the directive to use.
If you want caches to always check for content updates while reusing stored content, no-cache is the directive to use. It does this by requiring caches to revalidate each request with the origin server.
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
Please add a no-cache Cache Control option to the settings.
- This topic was modified 3 years, 3 months ago by .
The topic ‘I need “no-cache” header without “no-store”’ is closed to new replies.