有時咱們須要爲PC瀏覽器及移動瀏覽器生成不一樣的頁面,爲了提升性能,不能每次請求都去判斷User-Agent,一般用一個 Cookie 標記一下客戶端是不是移動客戶端,這樣只須要讀取這個 Cookie 的值就知道這個請求是不是移動端。web
這裏主要經過 OutputCacheByCustom 來實現對不一樣的 Cookie 值生成不一樣的頁面,具體作法也比較簡單:瀏覽器
這個函數接受兩個參數,第一個是 System.Web.HttpContext 對象,包含了對話的上下文,第二個是 string 類型的,用戶判斷具體採用用戶定義的哪一種緩存方案。緩存
public override string GetVaryByCustomString(System.Web.HttpContext context, string custom) { if (custom == "IsMobile") { if (context.Request.Cookies["IsMobile"] == null) return string.Empty; return context.Request.Cookies["IsMobile"].Value; } else { return base.GetVaryByCustomString(context, custom); } }
public class CacheController : Controller { [OutputCache(Duration=60, VaryByCustom="IsMobile",Location=OutputCacheLocation.Server)] public ActionResult Index() { return Content(DateTime.Now.ToString()); } }
以上兩步就能夠了,固然也能夠將緩存方案寫進 Web.config 配置文件中:cookie
<system.web> <caching> <outputCacheSettings> <outputCacheProfiles> <clear /> <!-- 60 seconds--> <add varyByCustom="IsMobile" duration="60" name="ChangeByDevice" location="Server" /> </outputCacheProfiles> </outputCacheSettings> </caching> </system.web>
在 View 相應的位置只需指定 OutputCache 的 CacheProfileide
public class CacheController : Controller { [OutputCache(CacheProfile = "ChangeByDevice")] public ActionResult Index() { return Content(DateTime.Now.ToString()); } }
打開 http://localhost/cache/index函數
Output:2014/10/26 13:58:01性能
在控制檯修改 IsMobile 的 Cookie 值測試
var date = new Date(); var expireDays = 100; date.setTime(date.getTime() + expireDays*24*3600*1000); document.cookie = "isMobile=1; path=/; expires=" + date.toGMTString();
重寫打開 http://localhost/cache/indexspa
Output:2014/10/26 13:58:16code