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
The plone.stableResource ruleset sets a Cache-Control header with a long max-age (31536000) to allow caching for up to a year. But if the client force-reloads so that a request is made with Cache-Control: nocache, the resource will still be refetched.
The plone.stableResource ruleset sets a
Cache-Control
header with a long max-age (31536000) to allow caching for up to a year. But if the client force-reloads so that a request is made withCache-Control: nocache
, the resource will still be refetched.Looks like it might be possible to avoid that by including
immutable
in the response'sCache-Control
header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching#avoiding_revalidationThe text was updated successfully, but these errors were encountered: