HTTP协议中的缓存机制是指使用Cache-Control和Expires头部将服务器的响应保存到客户端或代理服务器中,并在之后的请求中直接返回缓存内容,以减少响应延迟和网络流量。
常见的缓存策略有:
- No-cache:不使用缓存,总是向服务器验证。
- Public:可以被代理服务器缓存,可以被多个用户缓存。
- Private:只能被单个用户缓存,不能被代理服务器缓存。
- No-store:不缓存任何内容,对私有数据有用。
5.max-age:缓存内容将在指定时间内被认为是新鲜的,单位为秒。 - Expires:使用绝对时间指定缓存内容过期时间,优先级高于max-age。
代码示例:
No-cache策略:
Cache-Control: no-cache
Public策略:
Cache-Control: public, max-age=31536000
Private策略:
Cache-Control: private, max-age=3600
No-store策略:
Cache-Control: no-store
max-age策略:
Cache-Control: max-age=60 // 60秒后过期
Expires策略:
Expires: Thu, 01 Jan 2020 00:00:00 GMT