[ http 缓存] 为什么 Cache-Control 还需要 immutable 这个指令?

12次阅读

共计 318 个字符,预计需要花费 1 分钟才能阅读完成。

MDN 官方的说明:

The immutable response directive indicates that the response will not be updated while it’s fresh.

Cache-Control: public, max-age=604800, immutable

就像上面这段代码。在资源未过期的情况下,难道没有 immutable,浏览器在刷新的时候也会去 server 询问这个资源是否过期吗?

Cache-control: max-age=604800 已经说明了这个资源是强缓存。在未过期的情况下,本来就不会再去 server 请求。

所以,我不太理解为什么 Cache-Control 还需要 immutable 这个指令?

感谢分享指正。

正文完
 0