随笔-46  评论-64  文章-2  trackbacks-0
1. response.setHeader("Cache-Control","no-cache");

This is used to prevent the browser from caching your dynamic content generated by a JSP or Servlet.

You set this attribute in the HTTP header of the response object which would tell the browser not to cache this content. So everytime you request the page again, the browser would make a new request, instead of showing you a cached page.

2.使用服务器端控制AJAX页面缓存:
    response.setHeader( "Pragma", "no-cache" );
    response.addHeader( "Cache-Control", "must-revalidate" );
    response.addHeader( "Cache-Control", "no-cache" );
    response.addHeader( "Cache-Control", "no-store" );
    response.setDateHeader("Expires", 0);
单纯的使用 xmlhttp.setRequestHeader("Cache-Control","no-cache")无效。

3.Cache-Control头域
  Cache-Control指定请求和响应遵循的缓存机制。在请求消息或响应消息中设置Cache-Control并不会修改另一个消息处理过程中的缓存处理过程。请求时的缓存指令包括no-cache、no-store、max-age、max-stale、min-fresh、only-if-cached,响应消息中的指令包括public、private、no-cache、no-store、no-transform、must-revalidate、proxy-revalidate、max-age。各个消息中的指令含义如下:
  Public指示响应可被任何缓存区缓存。
  Private指示对于单个用户的整个或部分响应消息,不能被共享缓存处理。这允许服务器仅仅描述当用户的部分响应消息,此响应消息对于其他用户的请求无效。
  no-cache指示请求或响应消息不能缓存
  no-store用于防止重要的信息被无意的发布。在请求消息中发送将使得请求和响应消息都不使用缓存。
  max-age指示客户机可以接收生存期不大于指定时间(以秒为单位)的响应。
  min-fresh指示客户机可以接收响应时间小于当前时间加上指定时间的响应。
  max-stale指示客户机可以接收超出超时期间的响应消息。如果指定max-stale消息的值,那么客户机可以接收超出超时期指定值之内的响应消息。

Read more:
   http://www.jiehoo.com/browser-cache-problem.htm (作者: Cherami 原载: 浏览器缓存)
   再论怎么有效利用浏览器缓存之怎么避免浏览器缓存静态文件
   HTTP协议header头域- PetitPrince - 博客园
posted on 2008-09-27 10:23 jht 阅读(16549) 评论(3)  编辑  收藏 所属分类: J2EE

评论:
# re: Q: response.setHeader("Cache-Control","no-cache"); 是干什么用的?目的是什么?[未登录] 2011-08-30 10:36 | chen
学习了

怎么清缓存呢   回复  更多评论
  
# re: Q: response.setHeader("Cache-Control","no-cache"); 是干什么用的?目的是什么? 2011-08-30 10:38 | tbw
能说清楚点吗 看有点迷糊   回复  更多评论
  
# re: Q: response.setHeader("Cache-Control","no-cache"); 是干什么用的?目的是什么? 2013-03-13 16:49 | kaki
我个人认为是不缓存或者保存你这次返回的信息,
比如我们在网页上生成图片,但不希望这些图片一直占据内存,就可以使用这个策略吧。  回复  更多评论
  

只有注册用户登录后才能发表评论。


网站导航: