標籤:style http io ar color os 使用 sp strong
一、ASPX頁面緩衝
頁面緩衝的使用方法非常的簡單,只需要在aspx頁的頂部加一句聲明<%@ OutputCache Duration="60" VaryByParam="none" %>
這樣整個頁面的內容都會被緩衝,頁面中的ASP.NET代碼、資料來源在緩衝期間都不會被運行,而是直接輸出緩衝的頁面內容。
頁面緩衝是針對所有這個頁面的訪問者。這樣1個訪問者和1萬個訪問者、一次訪問和100萬次訪問對資料庫的壓力是一樣的。
二、outpuCache參數
Duration:緩衝時間,單位秒
VaryByParam:緩衝參數,
VaryByParam=none 無參數緩衝,可用於首頁;
VaryByParam="*" 如果想讓任何不同的查詢字串都建立不同的緩衝,則設定VaryByParam="*",一般情況下設定“*”就足夠了。
VaryByParam="id" 因為?id=2、?id=3隻是頁面的不同參數而已,為了能讓不同的新聞各種緩衝,因此可以設定VaryByParam="id"
DiskCacheable="true|false" 意思是要不要把緩衝放到硬碟上
注意:Buffer = true;以下設定才會生效,頁面預設就等於true
三、以下是程式碼範例的@ OutputCache指令和等效的編程代碼。
- 若要將輸出緩衝儲存指定的期間
聲明性方法:<%@ OutputCache Duration="60" VaryByParam="None" %>
編程的方法:Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));Response.Cache.SetCacheability(HttpCacheability.Public);
- 在其中發出請求的瀏覽器用戶端上儲存輸出緩衝
聲明性方法:<%@ OutputCache Duration="60" Location="Client" VaryByParam="None" %>
編程的方法:Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));Response.Cache.SetCacheability(HttpCacheability.Private);
- 在任何 HTTP 1.1 支援緩衝的裝置,包括Proxy 伺服器和發出請求的用戶端上儲存輸出緩衝
聲明性方法:<%@ OutputCache Duration="60" Location="Downstream" VaryByParam="None" %>
編程的方法:Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));Response.Cache.SetCacheability(HttpCacheability.Public);Response.Cache.SetNoServerCaching();
- 若要將輸出緩衝儲存在 Web 服務器上
聲明性方法:<%@ OutputCache Duration="60" Location="Server" VaryByParam="None" %>
編程的方法:TimeSpan freshness = new TimeSpan(0,0,0,60); DateTime now = DateTime.Now; Response.Cache.SetExpires(now.Add(freshness)); Response.Cache.SetMaxAge(freshness); Response.Cache.SetCacheability(HttpCacheability.Server); Response.Cache.SetValidUntilExpires(true);
- 緩衝到達時,使用一個不同的城市每個 HTTP 要求的輸出:
聲明性方法:<%@ OutputCache duration="60" varybyparam="City" %>
編程的方法:Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));Response.Cache.SetCacheability(HttpCacheability.Public);Response.Cache.VaryByParams["City"] = true;
更新緩衝:Response.Cache.SetNoServerCaching();
ASP.NET緩衝OutputCache之C#後台設定