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