Imagine a resource with a max-age
of 60 seconds:
- After 1 minute, the browser sends a conditional header
If-None-Match
- This checks if the etag of the resource has changed.
- If the etag has not changed, the server will return a
304 Not Modified
response.
Will this response automatically add a new 60 seconds to the max-age
? Or is this a case server needs to explicitly handle.