我有这个动作方法:
[OutputCache(Duration = 2,
Location = OutputCacheLocation.Any,
VaryByHeader = "Accept-Charset")]
public ActionResult Index()
{
return View();
}
生成的响应是:
Cache-Control:public, max-age=2
Content-Length:5164
Content-Type:text/html; charset=utf-8
Date:Wed, 28 Sep 2011 16:30:33 GMT
Expires:Wed, 28 Sep 2011 16:30:35 GMT
Last-Modified:Wed, 28 Sep 2011 16:30:33 GMT
Server:Microsoft-IIS/7.5
Vary:*
X-AspNet-Version:4.0.30319
X-AspNetMvc-Version:3.0
X-Powered-By:ASP.NET
为什么Vary
标题显示的是星号而不是Accept-Charset
?
OutputCacheAttribute
确实会对响应产生影响,实际上,Expires
和Cache-Control:max-age=n
标头取决于Duration
参数,Cache-Control:public
/ {{ 1}} / private
取决于no-cache
参数。
我为Location
创建了一个包装器,看看发生了什么:
OutputCacheAttribute
标题不会显示在中断中,因此public class CustomOutputCacheAttribute:OutputCacheAttribute
{
public override void OnResultExecuted(ResultExecutedContext filterContext)
{
base.OnResultExecuted(filterContext);
Dictionary<String, String> headers = new Dictionary<string, string>();
foreach (var header in filterContext.HttpContext.Response.Headers.AllKeys)
headers.Add(header, filterContext.HttpContext.Response.Headers[header]);
Debugger.Break();
}
}
可能会配置OutputCacheAttribute
。
我可以看到HttpContext.Current.Response.Cache
true 的方式,例如filterContext.HttpContext.Response.Cache.VaryByHeaders.UserCharSet
false ,但filterContext.HttpContext.Response.Cache.VaryByHeaders.AcceptTypes
标题始终显示 *
我想知道唯一可能的值是否是列为Vary
属性的四个值,可能是吗?
干杯。
答案 0 :(得分:7)
解决方案是使用Response.Cache.SetOmitVaryStar(true)
[OutputCache(Duration = 2,
Location = OutputCacheLocation.Any,
VaryByHeader = "Accept-Charset")]
public ActionResult Index()
{
Response.Cache.SetOmitVaryStar(true);
return View("ShowHeaders");
}
我仍然想弄清楚Vary有什么问题:*在这个帖子中:What is the meaning of the HTTP header Vary:*
答案 1 :(得分:0)
&lt;%@ OutputCache Duration =“2000”VaryByParam =“*”VaryByHeader =“Accept-Language”%&gt;