通常在服务器端大家都已经做了很多缓存的工作,ASP.NET CACHE也好MemeryCache也好却总是忽略了客户端缓存。
因为大家都知道不管哪个client都会缓存已经访问过的站点,但是浏览器缓存时间都是短暂的,所以最好是自定义延长浏览器缓存。
这个时候就需要修改Http头信息了,头信息中有个字段:
Cache-Control:no-cache
有很多办法可以修改头字段,比较方便通用的就是在web.config里设置,例如:
<?xml version="1.0"?>
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="8760:00:00"/>
</staticContent>
</system.webServer>
<system.web>
</system.web>
</configuration>
cacheControlMaxAge="8760:00:00" 缓存8760个小时
时间: 2024-10-08 00:43:28