ASP.NET緩衝介紹

來源:互聯網
上載者:User

ASP.NET緩衝

介紹

緩衝是在記憶體儲存資料的一項技術,也是ASP.NET中提供的重要特性之一。例如你可以在複雜查詢的時候快取資料,這樣後來的請求就不需要從資料庫中取資料,而是直接從緩衝中擷取。通過使用緩衝可以提高應用程式的效能。

主要有兩種類型的緩衝:

輸出緩衝Output caching\

資料緩衝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="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"%

自訂緩衝(Custom Caching)
你也可以建立自訂的程式來快取頁面面。ASP.NET提供了一種很便捷的方式來建立自訂緩衝,使用VarByCustom屬性指定自訂緩衝類型的名字。
你還要建立為緩衝產生自訂字串的方法,如下: 複製代碼 代碼如下: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 緩衝使用。
在頁面中增加控制項並且設定 EmployeeID. 複製代碼 代碼如下: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();
}

緩衝設定檔(Cache Profile )
web.config可以配置緩衝相關的設定, 複製代碼 代碼如下:<system.web>
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<addname="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 == null
{
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 == null
{
date2 = DateTime.Now;
Cache.Insert("Date2", date2, null, DateTime.Now.AddSeconds(40), TimeSpan.Zero,
CacheItemPriority.Default, new CacheItemRemovedCallback(CachedItemRemoveCallBack));
}
// Set values in labels
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 。
原文:http://kb.cnblogs.com/page/50971/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.