我不确定是什么原因造成的,但我们的控制器操作用于缓存其输出,但它不再这样做:
[HttpGet]
[OutputCache(VaryByParam = "slug", Duration = 3600)]
public ContentResult Index(string slug)
{
// each call to the page returns a new tick value
var viewData = DateTime.Now.Ticks.ToString();
return View(viewData);
}
之前,我可以调试页面,在 Index 方法中放置一个断点,第一次调用页面会触发断点,后续调用不会。现在,对页面的每次调用都会触发断点。
即使在运行站点(不是调试)时,我也可以跟踪操作中的 SQL 调用,不应在第一次调用后调用。
我不知道它什么时候停止工作,但我们最近升级到了 .Net 4.0 和 MVC 3。
非常感谢。
编辑
以下是页面响应的标头:
Cache-Control public, no-cache="Set-Cookie", max-age=1296000
Content-Encoding gzip
Content-Length 5414
Content-Type text/html; charset=utf-8
Date Wed, 18 Sep 2013 00:33:23 GMT
Expires Thu, 03 Oct 2013 00:33:20 GMT
Last-Modified Wed, 18 Sep 2013 00:33:20 GMT
Server Microsoft-IIS/7.5
Set-Cookie tag=tech; expires=Thu, 19-Sep-2013 00:33:23 GMT; path=/
Vary *
X-AspNet-Version 4.0.30319
X-AspNetMvc-Version 3.0
X-Powered-By ASP.NET