You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
max-age is a portion of the Cache-Control header that directs a cache, in the most specific case, a client's local cache. The s- prefix is for "shared" and is an instruction for shared proxies. Sensitive data specific to a single user will use a max-age header of however long, while setting the s-maxage to 0, denoting that proxies in the middle of the request should not cache sensitive data. In theory someone should have set the private portion, but crisp-http-cache was designed to play it safe in the instance someone forgot. The cache itself is a shared cache so we respect s-maxage primarily.
It looks like CrispHttpCache is only looking at the the
s-maxage
header to set TTLs:I would think that should be:
The text was updated successfully, but these errors were encountered: