bug_x

导航

 

Cache-control: max-age=5    :表示当访问此网页后的5秒内再次访问不会去服务器           

Cache-Control: no-cache:使人误以为是响应不被缓存。实际上Cache-Control: no-cache是会被缓存的,只不过每次在向客户端(浏览器)提供响应数据时,缓存都要向服务器评估缓存响应的有效性。 

Cache-Control: no-store:这个才是响应不被缓存的意思。 

Pragma: no-cache:跟Cache-Control: no-cache相同,Pragma: no-cache兼容http 1.0 ,Cache-Control: no-cache是http 1.1提供的。 

因此,Pragma: no-cache可以应用到http 1.0 和http 1.1,而Cache-Control: no-cache只能应用于http 1.1.
posted on 2016-11-28 14:44  bug_x  阅读(100)  评论(0)    收藏  举报