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
We're serving mostly static and immutable content, but only caching it for 1 or 4 hours (depends on cache type) for successful responses.
I think we should change this so that content that doesn't change (i.e. release assets) are cached for a lot longer than assets that do change (i.e. some directories, index.json).
Specifically, I think they should be something like these:
We're serving mostly static and immutable content, but only caching it for 1 or 4 hours (depends on cache type) for successful responses.
I think we should change this so that content that doesn't change (i.e. release assets) are cached for a lot longer than assets that do change (i.e. some directories,
index.json
).Specifically, I think they should be something like these:
public, immutable, max-age=31536000, s-maxage=31536000
index.json
, directory listings, ...),public, max-age=86400, s-maxage=86400, must-revalidate
The text was updated successfully, but these errors were encountered: