asp.net緩衝

來源:互聯網
上載者:User

標籤:blog   http   使用   os   io   strong   檔案   資料   

一、緩衝概念,緩衝的好處、類型。

           緩衝是一種用空間換取時間的技術,通俗點也就是說把你得到的資料存放在記憶體中一段時間,在這短時間內伺服器不去讀取資料庫、或是真實的資料來源,而是讀取你存放在記憶體中的資料,這裡你會疑惑怎麼設定存放資料,能存放什麼樣子的資料,存放時間的設定,真實資料來源資料改變伺服器不就讀取存在偏差?別急,下面慢慢會說到的。。

           緩衝的好處,緩衝是網站效能最佳化不可缺少的一種資料處理機制,他能有效緩解資料庫壓力,例如,網站每分鐘的點擊率為100萬,如果不使用緩衝的靜態頁面,這裡也沒有viewstate的情況下(viewstate會產生大量的字串,對伺服器互動資料是一種壓力,所以一般頁面是要禁用viewstate,採用緩衝的),只能是使用者點擊一次該頁面,這個頁面就讀取一次資料庫,這樣給資料庫造成的壓力可想而知,如果這裡我們使用了緩衝的話,設定緩衝有效期間為1分鐘,則這一分鐘只內,點擊100萬次跟點擊一次是一樣的,都是讀取一次資料庫,資料來源是被緩衝在記憶體中了。

            asp.net中的緩衝主要分為:頁面緩衝,資料來源緩衝,自訂資料緩衝這三種主要類型。

二、資料緩衝

  public partial class WebForm1 : System.Web.UI.Page    {        protected void Page_Load(object sender, EventArgs e)        {            //  Cache["date"]=要緩衝的資料;   這裡是自訂緩衝的簡單聲明使用            string datastr = DateTime.Now.ToLongTimeString();            Response.Write("第一個輸出時間:"+datastr+"</br>");  //這裡讀取的當前的時間,重新整理頁面時,這裡的時間會隨著變化。            if (Cache["date"] == null) //判斷是否存在value值為date的緩衝是否存在            {                Cache["date"] = datastr;                Response.Write("第二個輸出時間為:"+Cache["date"] + "這裡讀取的當前的時間");   //這裡讀取的當前的時間,重新整理頁面時,這裡的時間會隨著變化。            }            else            {                Response.Write(Cache["date"] + "這裡是從緩衝中讀取的時間");//這裡讀取的緩衝中的時間,重新整理頁面時,這裡的隨著時間變化,不會變化。            }        }    }

上面資料緩衝由於沒有設定緩衝的到期時間,所以第一個輸出時間為目前時間(重新整理頁面會變),第二個輸出時間會一直為第一次存入緩衝的時間(重新整理頁面不變)。

下面我們給資料緩衝添加一些實用的參數(上代碼)。

        protected void Page_Load(object sender, EventArgs e)        {            string ids="";            Maticsoft.BLL.ScriptsBak bll = new Maticsoft.BLL.ScriptsBak();            List<Maticsoft.Model.ScriptsBak> list = new List<Maticsoft.Model.ScriptsBak>();            list = bll.GetAll();            for (int i = 0; i < list.Count; i++)            {                ids += list[i].ScriptId.ToString()+"--";            }            ids = ids + "完";  //這裡的ids為從資料庫中讀取表中的id值然後用--連結起來的一個字串            if (Cache["key"] == null)            {                Cache.Insert("key", ids, null, DateTime.Now.AddSeconds(40), System.Web.Caching.Cache.NoSlidingExpiration);  //這裡給資料加緩衝,設定緩衝時間                //"key"為緩衝的鍵,ids為緩衝起來的值,null為緩衝依賴項,這裡沒有使用緩衝依賴項,所以為null,下面會詳細介紹緩衝依賴項                   //null後面為緩衝的時間為40秒                  //最後一個參數為設定時間的格式,ASP.NET允許你設定一個絕對到期時間或滑動到期時間,但不能同時使用,                  //我們這裡設定的為絕對到期時間,也就是沒重新整理一次頁面後快取資料為40秒,40秒後會從資料庫中重新擷取。                 Response.Write("cache載入為---" + Cache["key"] + "</br>");            }            else            {                Response.Write("cache載入為---" + Cache["key"] + "</br>");            }            Response.Write("直接載入為---" + ids + "</br>");        }

資料緩衝:將一些耗費時間的條目加入到一個對象緩衝集合中,以索引值的方式儲存。我們可以通過使用Cache.Insert()方法來設定緩衝的到期,優先順序,依賴項等。

三、頁面緩衝

 protected void Page_Load(object sender, EventArgs e)        {            string date = DateTime.Now.ToString();            Response.Write(date);        }
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="cache.WebForm1" %><%@ OutputCache Duration="10" VaryByParam="none" %>  <!---添加上這一句代碼意思是,添加此頁面緩衝十秒,這十秒之內,重新整理頁面將讀緩衝起來頁面的值,不再執行Page_Load方法。     Page_Load方法是每十秒執行一次--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body>    <div>        </div></body></html>

<%@ OutputCache Duration="10" VaryByParam="none" %> 這條指令標籤為該頁面添加緩衝,Duration這個參數指定頁面緩衝時間為10秒,VaryByParam這個指定頁面參數,也就是這樣子的,打個比方,例如這樣一個頁面http://www.cnblogs.com/knowledgesea/admin/EditPosts.aspx?postid=2536603&update=1,那麼他的參數也就是postid和update,如果這樣頁面我們可以把指令標籤寫為<%@ OutputCache Duration="10" VaryByParam="postid;update" %> 參數與參數之間用分號隔開,這樣子也就吧每個單獨的頁面緩衝起來了,他緩衝的就是postid=2536603&update=1或者postid=1&update=2等等不一樣的參數頁面全部緩衝起來。這裡可以使用一個簡便的方法,就是<%@ OutputCache Duration="10" VaryByParam="*" %>,緩衝起來所有當前的頁面下參數不一樣的頁面。

ASP.NET不會再執行頁面的生命週期和相關代碼而是直接使用緩衝的頁面,簡單點理解也就是我注釋中介紹的。

四、控制項緩衝

1.ObjectDataSource這樣的資料來源控制項,可以在屬性欄中找到相應的屬性,進行設定,下面我列出個例子,設定啟動緩衝,緩衝時間為10秒,時間類型為絕對時間。

<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" EnableCaching="True" CacheDuration="10" CacheExpirationPolicy="Absolute"></asp:ObjectDataSource>

2.沒有緩衝屬性的控制項要加緩衝

protected void Page_Load(object sender, EventArgs e)          {            string date = DateTime.Now.ToString();            TextBox1.Text = date;        }
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="cache.WebForm1" %><%@ OutputCache Duration="10" VaryByControl="TextBox1"%><!--VaryByControl的參數為要緩衝的控制項id--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body>    <form id="form1" runat="server">        <div>            <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>        </div>    </form></body></html>

這裡的TextBox控制項就加了緩衝,這裡的緩衝時間為10秒,也就是10秒內ASP.NET不會再執行頁面的生命週期和相關代碼而是直接使用緩衝的頁面。

五、緩衝依賴 (詳細:http://www.cnblogs.com/knowledgesea/p/3904929.html)

 

protected void Page_Load(object sender, EventArgs e)          {            string str = "";            if (Cache["key"] == null)            {                str = System.IO.File.ReadAllText(Server.MapPath("TextFile1.txt")); //讀取TextFile1.txt檔案中的資料                CacheDependency dp = new CacheDependency(Server.MapPath("TextFile1.txt"));//建立緩衝依賴項dp                Cache.Insert("key", str, dp);                Response.Write(Cache["key"]);   //如果TextFile1.txt這個檔案的內容不變就一直讀取緩衝中的資料,一旦TextFile1.txt檔案中的資料改變裡面重新讀取TextFile1.txt檔案中的資料            }            else            {                Response.Write(Cache["key"]);            }        }

 

緩衝依賴項使緩衝依賴於其他資源,當依賴項更改時,緩衝條目項將自動從緩衝中移除。緩衝依賴項可以是應用程式的 Cache 中的檔案、目錄或與其他對象的鍵。如果檔案或目錄更改,緩衝就會到期。

六、設定檔中設定緩衝

<system.web>  <caching>    <outputCacheSettings>      <outputCacheProfiles>     <addname="ProductItemCacheProfile" duration="60"/>   </outputCacheProfiles></outputCacheSettings>   </caching></system.web>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="cache.WebForm1" %><%@ OutputCache CacheProfile="ProductItemCacheProfile" VaryByParam="none" %><!--這裡的CacheProfile參數與設定檔中的保持一至--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body>    <div>        </div></body></html>

這樣就給頁面添加了緩衝為60秒的頁面。

七、緩衝的回呼函數

 

protected void Page_Load(object sender, EventArgs e)          {            string str = "";            if (Cache["key"] == null)            {                str = System.IO.File.ReadAllText(Server.MapPath("TextFile1.txt")); //讀取TextFile1.txt檔案中的資料                CacheDependency dp = new CacheDependency(Server.MapPath("TextFile1.txt"));//建立緩衝依賴項dp                Cache.Insert("key", str, dp, DateTime.Now.AddSeconds(20), Cache.NoSlidingExpiration, CacheItemPriority.Low, CacheItemRemovedCallback);                 //CacheItemPriority這個參數為緩衝的優先順序他分好多種層級,為了防止緩衝佔滿時系統自己刪除緩衝的優先順序廢除緩衝的,後面的為回呼函數的名稱。                Response.Write(Cache["key"]);   //如果TextFile1.txt這個檔案的內容不變就一直讀取緩衝中的資料,一旦TextFile1.txt檔案中的資料改變裡面重新讀取TextFile1.txt檔案中的資料            }            else            {                Response.Write(Cache["key"]);            }        }        public void CacheItemRemovedCallback(string key, object value, CacheItemRemovedReason reason) //這個為緩衝移除時的回呼函數,一定要保持與 Cache.Insert()方法中的最後一個參數名字一致,            //這裡使用了委託,你可以在 Cache.Insert()這個函數中轉定義看到的,所以這裡的格式就只能按我寫的這種方法簽名寫。        {            System.IO.File.WriteAllText(Server.MapPath("log.txt"),"緩衝移除原因為:"+reason.ToString());        }

 

例子中的回呼函數寫的是產生一個log.txt,檔案記錄每一次緩衝移除的原因。

八、設定檔中的緩衝設定

我們伺服器有開啟緩衝功能, 緩衝功能可以減少您訪問網站時候網站在伺服器裡面的編譯時間, 大大加快您網站的訪問速度, 如果您需要對您網站進行頻繁更新的話, 您可以考慮暫時將緩衝時間減少,或者暫時關閉緩衝

請將下列代碼放進web.config檔案裡面放在您網站的根目錄;

1.在web.config裡面設定縮小緩衝的時間,請在web.config裡面用下面的定義

<system.webServer>
<caching>
<profiles>
<remove extension=".aspx" />
<add extension=".aspx" policy="CacheForTimePeriod" 

kernelCachePolicy="DontCache" duration="00:00:01" varyByQueryString="*" />
</profiles>
</caching>
</system.webServer>

2. 如果要關閉某個頁面的caching功能,請在web.config裡面用下面的定義

<configuration>
<location path="showStockPrice.asp">
<system.webServer> 
<caching>
<profiles>
<remove extension=".asp" />
<add extension=".asp" policy="DontCache" kernelCachePolicy="DontCache"/>
</profiles>
</caching>
</system.webServer>
</location>
</configuration>

3. 如果要關閉整個程式的caching功能,請在web.config裡面用下面的定義

<configuration>
<system.webServer> 
<caching>
<profiles>
<remove extension=".asp" />
<add extension=".asp" policy="DontCache" kernelCachePolicy="DontCache"/>
</profiles>
</caching>
</system.webServer>
</configuration>

4. 如果要關閉根目錄某個或某幾個檔案夾的caching功能,請在web.config裡面用下面的定義

<location path="~/folderA,~/folderB">
<system.webServer>
<caching>
<profiles>
<remove extension=".asp" />
<add extension=".asp" policy="DontCache" kernelCachePolicy="DontCache"/>
</profiles>
</caching>
</system.webServer>
</location>
</configuration>

相關文章

聯繫我們

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