ASP.NET緩存使用方法

這裏咱們將介紹ASP.NET緩存的工做原理,包括簡單的定義,數據緩存以及緩存的設置等等內容。但願本文能對你們從此的工做有所幫助。
 
 
介紹
緩存是在內存存儲數據的一項技術,也是ASP.NET中提供的重要特性之一。例如你能夠在複雜查詢的時候緩存數據,這樣後來的請求就不須要從數據庫中取數據,而是直接從緩存中獲取。經過使用緩存能夠提升應用程序的性能。
主要有兩種類型的緩存:
1.輸出緩存Output caching
2.數據緩存Data caching
1. 輸出緩存(Output Caching)
使用輸出緩存,你能夠緩存最後輸出的HTML頁面,當相同的頁面再次請求的時候,ASP.NET不會再執行頁面的生命週期和相關代碼而是直接使用緩存的頁面,語法以下:
  
  
  
  
  1. <%@ OutputCache Duration=」60」 VaryByParam=」None」  %>  
Duration 屬性設置頁面將被緩存60妙。任何的用戶請求都會被緩存,在緩衝的60秒內相同的請求都會直接使用緩存的頁面。當緩存過時後ASP.NET會再次執行頁面代碼而且爲下一個60秒建立一個新的HTML緩存。
  
  
  
  
  1.  <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" 
  2.         CodeFile="OutputCachingTest.aspx.cs" Inherits="OutputCachingTest" Title="Untitled Page" %> 
  3.  <%@ OutputCache Duration="20" VaryByParam="None" %> 
  4.  <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">   
  5.    <div class="title">Output Cache</div> 
  6.    Date: <asp:Label ID="lblDate" runat="server" Text="" /> 
  7.    Time: <asp:Label ID="lblTime" runat="server" Text="" />         
  8.  </asp:Content> 
  9. protected void Page_Load(object sender, EventArgs e)  
  10. {  
  11.    lblDate.Text = DateTime.Now.ToShortDateString();  
  12.    lblTime.Text = DateTime.Now.ToLongTimeString();   
  13. }  
在這個例子中頁面將被緩存20秒。
經過查詢字符串緩存(Cache by Query String )
在實際應用中頁面每每會根據一些參數動態的改變頁面的內容。若是你的頁面是經過查詢字符串來獲取信息的,你能夠根據查詢字符串很容易的緩存頁面的不一樣拷貝。VarByParam=」None」指定ASP.NET只存儲緩存頁面的一個拷貝。VarByParam=」*」 指定ASP.NET根據不一樣的查詢字符串存儲不一樣的緩存頁面。
  
  
  
  
  1. <%@ OutputCache Duration="60" VaryByParam="*" %> 
  2.  
  3. <div align="right"> 
  4.    <a href="OutputCachingTest2.aspx">No Query String</a> |   
  5.    <a href="OutputCachingTest2.aspx?id=1">ID 1</a> |   
  6.    <a href="OutputCachingTest2.aspx?id=2">ID 2</a> |   
  7.    <a href="OutputCachingTest2.aspx?id=3">ID 3</a> |  
  8.    <a href="OutputCachingTest2.aspx?id=3&langid=1">ID 3</a> 
  9. </div>  
上面的例子中,在查詢字符串中傳了不一樣的ID.ASP.NET爲每個ID都存儲了單獨的緩存頁面。這種方式會有一些問題就是當查詢字符串範圍很廣的時候。這個時候咱們能夠在VarByParam 屬性中指定重要的查詢字符串變量的名字,以下:
  
  
  
  
  1. <%@OutputCacheDuration="60"VaryByParam="id;langid"%>  
這樣,ASP.NET能夠根據id」 or 「langid」來緩存不一樣的緩存版本。
自定義緩存(Custom Caching)
你也能夠建立自定義的程序來緩存頁面。ASP.NET提供了一種很便捷的方式來建立自定義緩存,使用VarByCustom屬性指定自定義緩存類型的名字。
  
  
  
  
  1. %@OutputCacheDuration="20"VaryByParam="None"VaryByCustom="browser"
你還要建立爲緩存生成自定義字符串的方法,以下:
  
  
  
  
  1. public override stringGetVaryByCustomString(HttpContext context, stringcustom)  
  2. {  
  3.     if(custom == "browser")  
  4.     {  
  5.        returncontext.Request.Browser.Browser +  
  6.               context.Request.Browser.MajorVersion;  
  7.     }  
  8.     else 
  9.    {  
  10.        return base.GetVaryByCustomString(context, custom);  
  11.     }  
  12. }  
這個方法必須寫在global.asax文件中。ASP.NET使用該方法返回的字符串來實現緩存,若是這個方法在不一樣的請求中返回相同的字符串,ASP.NET就會使用緩存的頁面,不然就會生成新的緩存版本。
上面的例子中GetVaryByCustomString()方法根據瀏覽器的名字建立緩存字符串,ASP.NET會根據不一樣的瀏覽器請求建立不一樣版本的緩存。
控件緩存(Control Cache )
上面的緩存技術可讓你很容易的緩存整個頁面,若是要緩存指定控件的內容,能夠經過指定VaryByControl 屬性來完成。
  
  
  
  
  1. <%@OutputCacheDuration="20"VaryByControl="MyControl_1"%> 
上面代碼ASP.NET將會緩存MyControl_1控件20分鐘。若是要根據一些屬性值來緩存控件只須要將OutPutCache指令加入*.ascx頁面。 
  
  
  
  
  1. <%@Control Language="C#"AutoEventWireup="true"CodeFile="MyControl.ascx.cs"Inherits="Controls_MyControl"%> 
  2. <%@OutputCacheDuration="20"VaryByControl="EmployeeID"%> 
  3. ......  
  4. ......  
VaryByControl=」EmployeeID」告訴ASP.NET根據控件中聲明的EmployeeID屬性來建立不一樣版本的緩存。
在 .ascx.cs 文件加入EmplyeeID屬性爲ASP.NET 緩存使用。
  
  
  
  
  1. private int_employeeID;  
  2. public intEmployeeID  
  3. {  
  4.    get{ return_employeeID; }  
  5.    set{ _employeeID = value; }  
  6. }  
  7.  
  8. protected voidPage_Load(objectsender, EventArgs e)  
  9. {  
  10.    lblDate.Text = DateTime.Now.ToShortDateString();  
  11.    lblTime.Text = DateTime.Now.ToLongTimeString();  
  12.  
  13.    lblEmployeeID.Text = EmployeeID.ToString();  
  14.  
在頁面中增長控件而且設置 EmployeeID.
  
  
  
  
  1. <%@RegisterSrc="Controls/MyControl.ascx"TagName="MyControl"TagPrefix="uc1"%> 
  2. <asp:ContentIDasp:ContentID="Content1"ContentPlaceHolderID="ContentPlaceHolder1"runat="Server"> 
  3.     <divaligndivalign="center"> 
  4.         <uc1:MyControlIDuc1:MyControlID="MyControl1"runat="server"EmployeeID="1"></uc1:MyControl> 
  5.     </div> 
  6. </asp:Content> 
緩存配置文件(Cache Profile )
web.config能夠配置緩存相關的設置,
  
  
  
  
  1. <system.web> 
  2.   <caching> 
  3.     <outputCacheSettings> 
  4.       <outputCacheProfiles> 
  5.      <addnameaddname="ProductItemCacheProfile" duration="60"/> 
  6.    </outputCacheProfiles> 
  7. </outputCacheSettings> 
  8.    </caching> 
  9. </system.web> 
你能夠經過設置 CacheProfile=」ProfileName」 屬性 來使用上面的配置:
  
  
  
  
  1. %@OutputCacheCacheProfile="ProductItemCacheProfile"VaryByParam="None"% 
2. 數據緩存(Data Caching)
ASP.NET還提供了另外一種靈活的緩存類型:數據緩存。你能夠將一些耗費時間的條目加入到一個對象緩存集合中,以鍵值的方式存儲。
Cache["Name"] = data;
咱們能夠經過使用Cache.Insert()方法來設置緩存的過時,優先級,依賴項等。
  
  
  
  
  1. date1 = DateTime.Now;  
  2. Cache.Insert("Date1", date1, null, DateTime.Now.AddSeconds(20), TimeSpan.Zero); 
ASP.NET容許你設置一個絕對過時時間或滑動過時時間,但不能同時使用。
緩存依賴項Cache dependency
緩存依賴項使緩存依賴於其餘資源,當依賴項更改時,緩存條目項將自動從緩存中移除。緩存依賴項能夠是應用程序的 Cache 中的文件、目錄或與其餘對象的鍵。若是文件或目錄更改,緩存就會過時。
  
  
  
  
  1. date2 = DateTime.Now;  
  2. string[] cacheKeys = { "Date1"};  
  3. CacheDependency cacheDepn = newCacheDependency(null, cacheKeys);  
  4. Cache.Insert("Date2", date2, cacheDepn); 
上面的例子「Date2」緩存對象依賴「Date1」緩存條目,當 「Date1」 對象過時後「Date2」 將會自動過時。CacheDependency(null, cacheKeys)中的第一個參數爲空是因爲咱們只監視緩存鍵的更改狀況。
回調函數和緩存優先級(Callback Method and Cache Priority)
ASP.NET容許咱們寫一個回調函數,當緩存條目從緩存中移除的時候觸發。還能夠設置緩存條目的優先級。
  
  
  
  
  1. protected void Page_Load(object sender, EventArgs e)  
  2. {  
  3.   DateTime? date1 = (DateTime?)Cache["Date1"];  
  4.   if (!date1.HasValue) // date1 == null  
  5.   {  
  6.     date1 = DateTime.Now;  
  7.     Cache.Insert("Date1", date1, null, DateTime.Now.AddSeconds(20), TimeSpan.Zero,   
  8.                  CacheItemPriority.Default, new CacheItemRemovedCallback(CachedItemRemoveCallBack));  
  9.   }  
  10.  
  11.   DateTime? date2 = (DateTime?)Cache["Date2"];  
  12.   if (!date2.HasValue) // date2 == null  
  13.   {  
  14.     date2 = DateTime.Now;  
  15.     Cache.Insert("Date2", date2, null, DateTime.Now.AddSeconds(40), TimeSpan.Zero,   
  16.                  CacheItemPriority.Default, new CacheItemRemovedCallback(CachedItemRemoveCallBack));  
  17.   }  
  18.  
  19.   // Set values in labels  
  20.   lblDate.Text = date1.Value.ToShortDateString();  
  21.   lblTime.Text = date1.Value.ToLongTimeString();  
  22.  
  23.   lblDate1.Text = date2.Value.ToShortDateString();  
  24.   lblTime1.Text = date2.Value.ToLongTimeString();  
  25.  
  26. }  
  27.      
  28. private void CachedItemRemoveCallBack(string key, object value, CacheItemRemovedReason reason)  
  29. {  
  30.   if (key == "Date1" || key == "Date2")  
  31.   {   
  32.      Cache.Remove("Date1");  
  33.      Cache.Remove("Date2");  
  34.   }  
例子中建立了「Date1」 和 「Date2」緩存。「Date1」 在20秒後過時「Date2」爲40秒。可是因爲咱們註冊了移除的回調函數,當「Date1」 或 「Date2」其中一個過時都會執行CachedItemRemoveCallBack 方法,在這個方法中移除了兩個緩存條目,ASP.NET還提供了處理緩存條目更新時的回調函數CacheItemUpdateCallback 。
相關文章
相關標籤/搜索