按 [MDN]( https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control) 官方的说明:
> The immutable response directive indicates that the response will not be updated while it's fresh.
```
Cache-Control: public, max-age=604800, immutable
```
就像上面这段代码。在资源未过期的情况下,难道没有 `immutable`,浏览器在刷新的时候也会去 serfer 询问这个资源是否过期吗?
`Cache-control: max-age=604800` 已经说明了这个资源是强缓存。在未过期的情况下,本来就不会再去 serfer 请求。
所以,我不太理解为什么 Cache-Control 还需要 immutable 这个指令?
感谢分享指正。 |
|