ASP.NET緩衝OutputCache之C#後台設定

來源:互聯網
上載者:User

標籤: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#後台設定

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.