我不知道VaryByHeader =“User-Agent”和VaryByCustom =“Browser”之间的区别.后者会创建较少的缓存页面是对的吗?或者换句话说,如果我只想缓存不同的浏览器类型(和版本),后者是更好的选择?
Thx为任何建议!
sl3dg3
解决方法
从MSDN文章 –
ASP.NET Caching: Techniques and Best Practices:
In order to enable separate cache entries for each browser,VaryByCustom can be set to a value of “browser”. This functionality is built into the caching module,and will insert separate cached versions of the page for each browser name and major version.
我认为这意味着以下用户名将被视为IE9.0,并创建一个缓存条目:
> Mozilla / 5.0(Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))
> Mozilla / 5.0(Windows; U; MSIE 9.0; Windows NT 9.0; en-US)
> Mozilla / 5.0(兼容; MSIE 9.0; Windows NT 7.1; Trident / 5.0)
但是如果您使用VaryByHeader =“User-Agent”,将创建3个条目