ASP.NET Cache的一些總結2

 自定義緩存控件html

前面咱們介紹了經過查詢參數實現緩存一個或多個頁面,其實ASP.NET也容許咱們自定義緩存方式來決定是否緩存頁或重用現有的,這時咱們能夠經過設置VaryByCustom屬性來實現。web

假設,如今咱們要設計基於不一樣UserHostName的緩存,因爲程序在執行過程當中,首先調用GetVaryByCustomString()方法來肯定是否緩存頁面或重用現有的,因此咱們能夠經過重寫該方法實現基於UserHostName的緩存,具體實現以下:ajax

  
  
  
  
  1. /// <summary> 
  2. /// Gets vary cache based on custom string value.  
  3. /// </summary> 
  4. /// <param name="context">Http context.</param> 
  5. /// <param name="custom">custom string</param> 
  6. /// <returns></returns> 
  7. public override string GetVaryByCustomString(HttpContext context, string custom)  
  8. {  
  9.     if (string.Equals(custom, "UserHostName", StringComparison.OrdinalIgnoreCase))  
  10.     {  
  11.         // Indicates that the cache should be vary on user host name.  
  12.         return Context.Request.UserHostName;  
  13.     }  
  14.     return base.GetVaryByCustomString(context, custom);  

前面咱們重寫了GetVaryByCustomString()方法,使得UserHostName值不一樣時,獲取相應的緩存值。數據庫

而後讓程序基於UserHostName建立緩存,因此咱們要在頁面添加如下代碼:json

  
  
  
  
  1. <!-- set vary cache based on custom string value --> 
  2. <%@ OutputCache Duration="30" VaryByParam="None" VaryByCustom="UserHostName" %> 

咱們經過自定義如今GetVaryByCustomString()方法,實現了Web程序根據UserHostName實施不一樣的緩存方式,其實,咱們還能夠實現更多種類緩存方案,例如:基於用戶角色、時間和Url等等。api

片斷緩存緩存

在某些狀況下,咱們不能緩存整個頁面,但咱們仍想緩存部分頁面從而減輕系統的負擔;其實,咱們能夠經過兩種方法實現:片斷緩存數據緩存.安全

爲了實現片斷緩存,咱們須要建立自定義控件緩存部分頁面,而後咱們把OutputCache指令添加到自定義控件中,這樣整個頁面將不會被緩存,而自定義緩存控件除外。app

前面咱們介紹了輸出緩存的使用,只需在頁面中添加OutputCache指令,假設咱們要在幾個頁面中添加輸出緩存這可能比較簡單,但咱們要在幾十個頁面中添加輸出緩存功能,並且前面介紹的例子中Duration屬性值都是直接Hard code到每一個頁面中,若是咱們須要修改Duration屬性值,那麼就必須修改每一個頁面了,ASP.NET還須要從新編譯這些頁面,這不利於咱們的維護,最重要的是增長了咱們的工做量。dom

其實,咱們能夠在web.config文件中定義一個outputCacheProfile(ProductCacheProfile),而後在頁面中添加CacheProfile屬性而且賦值爲ProductCacheProfile,web.config文件設置以下:

  
  
  
  
  1. <caching> 
  2.   <!-- Sets out put cache profile--> 
  3.   <outputCacheSettings> 
  4.     <outputCacheProfiles> 
  5.       <add name="ProductCacheProfile" duration="30"/> 
  6.     </outputCacheProfiles> 
  7.   </outputCacheSettings> 
  8. </caching> 

如今,咱們在頁面中添加CacheProfile屬性,而且設置爲ProductCacheProfile,以下所示:

  
  
  
  
  1. <!-- set CacheProfile property --> 
  2. <%@ OutputCache CacheProfile="ProductCacheProfile" VaryByParam="None" %> 
  3. 數據緩存

    Cache對象是線程安全:這表示無需顯式實現鎖定或解鎖,在添刪Cache對象中的元素,然而,在Cache對象中元素必須是線程安全的。例如,咱們建立一個實體Product,並且存在多個客戶端可能同時操做該對象的狀況,這時咱們必須爲實體Product實現鎖定和解鎖操做(同步操做請參考《單例模式(Singleton)的6種實現》)。

    Cache對象中的緩存項自動移除:當緩存過時,依賴項被修改或內存不足緩存ASP.NET會自動移除該緩存項。

    緩存項支持依賴關係:咱們能夠給緩存項添加文件、數據庫表或其餘資源類型的依賴關係。

    SqlDataSource緩存

    當咱們在SqlDataSource控件中啓用緩存,它緩存SelectCommand中的結果;若是SQL查詢語句中帶有參數時,SqlDataSource控件會緩存每個參數值對應的結果。

    這跟咱們以前經過輸出緩存實現報表程序緩存查詢頁面效果同樣,因此咱們將使用SqlDataSource緩存實現該效果。

    假設咱們要提供一個報表程序,讓用戶經過選擇產品名稱(ProductName),獲取相應的產品信息。

    首先,咱們在頁面中建立兩個數據源控件:sourceProductName和sourceProduct,接着把數據源分別綁定到Dropdownlist和Gridview中,具體實現以下:

         
         
         
         
    1. <!-- The product number datasource START -->  
    2. <asp:SqlDataSource ID="sourceProductName" runat="server" ProviderName="System.Data.SqlClient" 
    3.     EnableCaching="True" CacheDuration="3600" ConnectionString="<%$ ConnectionStrings:SQLCONN %>" 
    4.     SelectCommand="SELECT ProductNumber FROM Production.Product"></asp:SqlDataSource>  
    5. <!-- The product number datasource END -->  
    6.  
    7. <!-- The product datasource START -->  
    8. <asp:SqlDataSource ID="sourceProduct" runat="server" ProviderName="System.Data.SqlClient" 
    9.     EnableCaching="True" CacheDuration="3600" ConnectionString="<%$ ConnectionStrings:SQLCONN %>" 
    10.     SelectCommand="SELECT Name, ProductNumber, SafetyStockLevel, ReorderPoint, StandardCost, DaysToManufacture  
    11.      FROM Production.Product WHERE ProductNumber=@ProductNumber">  
    12.     <SelectParameters>  
    13.         <asp:ControlParameter ControlID="ddlProductNumber" Name="ProductNumber" PropertyName="SelectedValue" />  
    14.     </SelectParameters>  
    15. </asp:SqlDataSource>  
    16. <!-- The product number datasource END -->  
    17.  
    18. <!-- Binding the product number to gridview control -->  
    19. <!-- NOTE: Due to search and result in the same page, so need to set AutoPostBack is True-->  
    20. <asp:DropDownList ID="ddlProductNumber" AutoPostBack="True" DataSourceID="sourceProductName" 
    21.     DataTextField="ProductNumber" runat="server">  
    22. </asp:DropDownList>  
    23.  
    24. <!-- Binding the product datasource to gridview control -->  
    25. <asp:GridView ID="gvProduct" runat="server" DataSourceID="sourceProduct" CssClass="Product">  
    26. </asp:GridView>  

    如今咱們對報表程序進行查詢,若是ProudctName以前沒有被緩存起來就會建立相應的緩存,而已經緩存起來的將被重用,查詢結果以下:

    cache8 圖6查詢結果

  4. 緩存的依賴關係

    緩存項之間的依賴

    ASP.NET Cache容許咱們創建緩存之間的依賴關係,即一個緩存項依賴於另外一個緩存項;如下示例代碼建立了二個緩存項,而且它們之間創建依賴關係。具體實現以下:

         
         
         
         
    1. // Creates cache object Key1.  
    2. Cache["Key1"] = "Cache Item 1";  
    3.  
    4. // Makes Cache["Key2"] dependent on Cache["Key1"].  
    5. string[] dependencyKey = new string[1];  
    6. dependencyKey[0] = "Key1";  
    7.  
    8. // Creates a CacheDependency object.  
    9. CacheDependency dependency = new CacheDependency(null, dependencyKey);  
    10.  
    11. // Establishs dependency between cache Key1 and Key2.  
    12. Cache.Insert("Key2""Cache Item 2", dependency); 

    如今,當Key1緩存項更新或從緩存中刪除,Key2緩存項就會自動從緩存刪除。

    文件依賴

    前面咱們介紹了緩存項之間的依賴關係,ASP.NET Cache還提供緩存項與文件之間的依賴關係,當文件被更新或刪除對應的緩存項也將失效。

    在上篇博文《Ajax與JSON的一些總結》的最後介紹的一個DEMO——Weibo Feed中,咱們經過實時方式向新浪微博API發送請求獲取相應的數據,但在必定時間內請求的次數是有限制的,一旦超出了限制次數就再也不接受請求了(具體請參考Rate-limiting)。因此能夠經過Cache的方式把數據緩存起來,當客戶端請求時,若是緩存數據已經存在那麼直接返回數據,不然從新想微博API請求數據。

    首先,咱們建立一個HttpHandler,它負責向微博API發送請求而且把數據保存的文件中,最後把數據返回的客戶端。

    cache9圖7 請求流程

    接下來,咱們定義CacheData()方法把微博數據保存到文本文件中而且創建緩存與數據文件的依賴關係。

         
         
         
         
    1. /// <summary>  
    2. /// Caches the data into text file.  
    3. /// </summary>  
    4. /// <param name="context">The http context</param>  
    5. private void CacheData(HttpContext context)  
    6. {  
    7.     // Weibo API.  
    8.     string uri = context.Request.QueryString["api"] + "?" +  
    9.         "source=" + context.Request.QueryString["source"] + "&" +  
    10.           "count=" + context.Request.QueryString["count"];  
    11.       
    12.     HttpWebResponse response = this.GetWeibos(uri);  
    13.  
    14.     if (null == response)  
    15.     {  
    16.         throw new ArgumentNullException("Response is null");  
    17.     }  
    18.  
    19.     string jsonData;  
    20.     // Writes the reponse data into text file.  
    21.     using (var reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding(response.CharacterSet)))  
    22.     {  
    23.         jsonData = reader.ReadToEnd();  
    24.     }  
    25.  
    26.     string dataPath = context.Server.MapPath("weibo.json");  
    27.     using (var writer = new StreamWriter(dataPath, false, Encoding.GetEncoding(response.CharacterSet)))  
    28.     {  
    29.         writer.Write(jsonData);  
    30.     }  
    31.       
    32.     // Establishs dependency between cache weibo and text file.  
    33.     // Sets cache expires after 2 minuntes.  
    34.     HttpRuntime.Cache.Insert("weibo", jsonData, Dep, Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(2));  
    35.  

    如今咱們把數據保存到文本文件中而且創建了緩存weibo與數據文件的依賴關係,接下來咱們要把JSON格式數據返回給客戶端。

         
         
         
         
    1. /// <summary>  
    2. /// Responses the weibo data.  
    3. /// </summary>  
    4. /// <param name="context">The http contex.</param>  
    5. private void ResponseWeibo(HttpContext context)  
    6. {  
    7.     // Gets the weibo cache data.  
    8.     byte[] buf = Encoding.UTF8.GetBytes(HttpRuntime.Cache["weibo"].ToString());  
    9.       
    10.     // Writes the data into output stream.  
    11.     context.Response.OutputStream.Write(buf, 0, buf.Length);  
    12.     context.Response.OutputStream.Flush();  
    13.     ////context.Response.Close();  

    上面咱們把JSON格式字符串轉換爲Byte數值,而後寫入到OutputStream中,最後把數據返回給客戶端。

         
         
         
         
    1. // The function to get weibo data.  
    2. loadWeibo: function() {  
    3.     $.ajax({  
    4.         // Weibo API.  
    5.     url: "WeiboHandler.ashx",  
    6.         type: "GET",  
    7.         // NOTE: We get the data from same domain,  
    8.         // dataType is json.  
    9.         dataType: "json",             
    10.         data: {  
    11.             source: JQWeibo.appKey,  
    12.             count: JQWeibo.numWeibo  
    13.         },  
    14.  
    15.         // When the requet completed, then invokes success function.  
    16.         success: function(data, textStatus, xhr) {  
    17.  
    18.             // Sets html structure.  
    19.             var html =  
    20.         '<div class="weibo">' +  
    21.         '<a href="http://weibo.com/DOMAIN" target="_blank">USER</a>' +  
    22.         ':WEIBO_TEXT<div class="time">AGO</div>';  
    23.  
    24.             // Appends weibos into html page.  
    25.             for (var i = 0; i < data.length; i++) {  
    26.                 $(JQWeibo.appendTo).append(  
    27.             html.replace('WEIBO_TEXT', JQWeibo.ify.clean(data[i].text))  
    28.  
    29.                 // Uses regex and declare DOMAIN as global, if found replace all.  
    30.                 .replace(/DOMAIN/g, data[i].user.domain)  
    31.                 .replace(/USER/g, data[i].user.screen_name)  
    32.                 .replace('AGO', JQWeibo.timeAgo(data[i].created_at))  
    33.         );  
    34.             }  
    35.         }  
    36.     })  
    cache10圖8請求結果
    總結

    緩存可使應用程序的性能獲得很大的提升,所以在設計應用程序應該予以考慮,本博文主要介紹了ASP.NET中輸出緩存和數據緩存的應用場合和區別。

    頁面緩存適用於生成的頁面一般都相同或改變時間比較固定狀況,例如:數據在每小時都會更新,那麼咱們能夠設置duration爲3600s。

    數據緩存適用生成的頁面老是在變化狀況。

    http://www.codeproject.com/Articles/29899/Exploring-Caching-in-ASP-NET

    http://msdn.microsoft.com/zh-cn/library/aa478965.aspx#XSLTsection129121120120

    http://www.amazon.com/Beginning-ASP-NET-3-5-2008-Professional/dp/1590598911

    原文連接:http://www.cnblogs.com/rush/archive/2012/06/30/2571438.html

相關文章
相關標籤/搜索