Does it make sense to have max-age and s-maxage in

2019-04-17 22:04发布

Considering that max-age applies to all the caches, and s-maxage only applies to shared caches (proxy and gateway cache)....

Does it make sense to use both directives in a non-expirable and public page?

Controller pseudo-code:

w = Response();
w.setPublic();
w.setMaxAge("1 year");
w.setShareMaxAge("1 year");

return w;

2条回答
倾城 Initia
2楼-- · 2019-04-17 22:43

Key point to note in the definition is share cache

From HTTP Header Field Definitions

14.9.3 Modifications of the Basic Expiration Mechanism

...

s-maxage

If a response includes an s-maxage directive, then for a shared cache (but not for a private cache), the maximum age specified by this directive overrides the maximum age specified by either the max-age directive or the Expires header.

...

It means that reverse proxy/caches like varnish, cloudfront, cloudflare can have a cache age different to browser cache. I would personally prefer value of s-maxage to be higher than maxage

In HTTP 1.1 once response is cached, you can't contact browser to invalidate cache but you can tell it to CDNs.

查看更多
劳资没心,怎么记你
3楼-- · 2019-04-17 22:59

From HTTP Header Field Definitions:

14.9.3 Modifications of the Basic Expiration Mechanism

...

s-maxage

If a response includes an s-maxage directive, then for a shared cache (but not for a private cache), the maximum age specified by this directive overrides the maximum age specified by either the max-age directive or the Expires header.

...

Note, "overrides". So, it would only make sense if you intend to specify a different maximum age for shared caches as compared to max-age, which would be used by end users.

In your particular example, they're the same, so specifying s-maxage is just unnecessary.

查看更多
登录 后发表回答