溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ASP.NET數(shù)據(jù)緩存怎么理解

發(fā)布時(shí)間:2021-12-06 15:40:25 來源:億速云 閱讀:124 作者:iii 欄目:編程語言

這篇文章主要介紹“ASP.NET數(shù)據(jù)緩存怎么理解”,在日常操作中,相信很多人在ASP.NET數(shù)據(jù)緩存怎么理解問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ASP.NET數(shù)據(jù)緩存怎么理解”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

在講ASP.NET數(shù)據(jù)緩存之前還要先說一下如果在頁面中使用參數(shù)緩存。前面講過一個(gè)緩存設(shè)置VaryByParam="none"為無參數(shù),我們也可以對VaryByParam進(jìn)行設(shè)置,設(shè)置的參數(shù)與隨 GET 方法屬性發(fā)送的查詢字符串值對應(yīng),或與使用 POST 方法發(fā)送的參數(shù)對應(yīng)。將該屬性設(shè)置為多個(gè)參數(shù)時(shí),對于每個(gè)指定參數(shù)組合,輸出緩存都包含一個(gè)不同版本的請求文檔??赡艿闹蛋?none、星號 (*) 以及任何有效的查詢字符串或 POST 參數(shù)名稱。簡單點(diǎn)說,就是設(shè)置成我們在頁面中使用的QueryString名稱,看個(gè)例子:

﹤%...@ Page Language="C#" AutoEventWireup="true" CodeFile="date.aspx.cs" Inherits="date" %﹥  ﹤%...@ OutputCache Duration="60" VaryByParam="CustomerID" %﹥  ﹤!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﹥ASP.NET數(shù)據(jù)緩存﹤/title﹥  ﹤/head﹥  ﹤body﹥      ﹤form id="form1" runat="server"﹥      ﹤div﹥            ﹤asp:GridView ID="GridView1" runat="server" BackColor="LightGoldenrodYellow"             BorderColor="Tan" BorderWidth="1px" CellPadding="2" ForeColor="Black" GridLines="None"﹥              ﹤FooterStyle BackColor="Tan" /﹥              ﹤SelectedRowStyle BackColor="DarkSlateBlue" ForeColor="GhostWhite" /﹥              ﹤PagerStyle BackColor="PaleGoldenrod" ForeColor="DarkSlateBlue" HorizontalAlign="Center" /﹥              ﹤HeaderStyle BackColor="Tan" Font-Bold="True" /﹥              ﹤AlternatingRowStyle BackColor="PaleGoldenrod" /﹥          ﹤/asp:GridView﹥           ﹤br /﹥          ﹤br /﹥          ﹤asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/date.aspx?CustomerID=16"﹥16﹤/asp:HyperLink﹥          ﹤asp:HyperLink ID="HyperLink2" runat="server" NavigateUrl="~/date.aspx?CustomerID=19"﹥19﹤/asp:HyperLink﹥          ﹤/div﹥      ﹤/form﹥  ﹤/body﹥  ﹤/html﹥protected void Page_Load(object sender, EventArgs e)      ...{          string conn, comm, id;          if (Request.QueryString["CustomerID"] == null)          ...{              id = "16";          }          else         ...{               id = Request.QueryString["CustomerID"];          }                    conn = "Server=WEB\SQLEXPRESS;Uid=moon;Pwd=1qaz2wsx;Database=store";          comm = "SELECT * FROM orders WHERE CustomerID =" + id;           SqlDataAdapter da = new SqlDataAdapter(comm, conn);          DataSet ds = new DataSet();          da.Fill(ds);           GridView1.DataSource = ds.Tables[0];          GridView1.DataBind();                    Response.Write(DateTime.Now.ToString());      }

運(yùn)行后分別點(diǎn)擊16和19會根據(jù)這兩個(gè)關(guān)鍵字SELECT出不同的數(shù)據(jù),這時(shí)候根據(jù)我們傳遞的兩個(gè)參數(shù)會分別建立兩個(gè)緩存頁,在每點(diǎn)擊一個(gè)關(guān)鍵字后請記住顯示的時(shí)間,再反復(fù)刷新看看時(shí)間有什么變化!好了接下來講一下數(shù)據(jù)緩存。

ASP.NET數(shù)據(jù)緩存(Data Caching)

在System.Web.Caching空間里有一個(gè)類“Cache”我們可以通過這個(gè)類對數(shù)據(jù)進(jìn)行緩存。

最簡單的緩存方法:Cache["MyCacheString"] = "My CSDN BLOG!!!"; 通過賦值的形式建立一個(gè)緩存,再通過賦值的形式取出緩存:myLabel.Text = Cache["MyCacheString"].ToString();這種方法使用非常的簡單可是功能上受到了一些限制,為了更完善的訂制緩存,應(yīng)該使用Cache.Insert()方法,下面舉個(gè)例子:

頁面里只需要放一下GridView就可以了

using System;  using System.Web.Caching;  using System.Data;  using System.Data.SqlClient;  using System.Configuration;  using System.Collections;  using System.Web;  using System.Web.Security;  using System.Web.UI;  using System.Web.UI.WebControls;  using System.Web.UI.WebControls.WebParts;  using System.Web.UI.HtmlControls;   public partial class DataCache : System.Web.UI.Page  ...{      DataView dv;//先聲明一個(gè)數(shù)據(jù)視圖用來存放數(shù)據(jù)庫里的數(shù)據(jù)表       protected void Page_Load(object sender, EventArgs e)      ...{          dv = (DataView)Cache["ds"];//從ASP.NET數(shù)據(jù)緩存中讀取數(shù)據(jù)表           if (dv == null)//如果緩存是空的,就建立數(shù)據(jù)庫連接,從數(shù)據(jù)庫里讀數(shù)據(jù)          ...{              string conn, comm;              conn = "Server=WEB\SQLEXPRESS;Uid=moon;Pwd=1qaz2wsx;Database=store";              comm = "SELECT * FROM orders";               SqlDataAdapter da = new SqlDataAdapter(comm, conn);              DataSet ds = new DataSet();              da.Fill(ds);              dv = ds.Tables[0].DefaultView;              //下面這句是關(guān)鍵,具體參數(shù)后面介紹              Cache.Insert("ds", dv, null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(3));              Databind();              Label1.Text = DateTime.Now.ToString();//參考用的時(shí)間,可有可無          }          else         ...{              Databind();              Response.Write("Is Cache Data!!!");//此句可有可無          }      }              protected void Databind()//自定義的數(shù)據(jù)綁定方法      ...{          GridView1.DataSource = dv;          GridView1.DataBind();      }  }

ASP.NET數(shù)據(jù)緩存參數(shù)說明

Cache.Insert (String, Object, CacheDependency, DateTime, TimeSpan) 1是緩存的名稱,2是緩存的數(shù)據(jù)對象,3是緩存鍵依賴項(xiàng),通常為Null,4是過期時(shí)間,如果使用相對過期時(shí)間則設(shè)為NoAbsoluteExpiration,5是可調(diào)過期時(shí)間,如果參數(shù)4使用了固定過期時(shí)間,則此參數(shù)要設(shè)成NoSlidingExpiration。呵呵是不是看的有點(diǎn)暈啊,舉兩個(gè)具體例子說一下過期時(shí)間的問題

Cache.Insert("ds", dv, null,DateTime.Now.AddMinutes(5) , System.Web.Caching.Cache.NoSlidingExpiration);
在這個(gè)例子里當(dāng)緩存建立后過5分鐘就過期。
Cache.Insert("ds", dv, null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(5));

這個(gè)例子里緩存建立后,過期時(shí)間為可調(diào),比如1:20秒建立的緩存過期時(shí)間應(yīng)該是6:20但如果在3:20有人訪問了緩存,則過期時(shí)間將調(diào)整為8:20,以此類推……

我們在VS2005里建立一個(gè)測試看看使用緩存前和使用緩存后的性能變化吧!看到?jīng)]有,沒有緩存前用了0.43秒而使用緩存后只用了0.08秒性能相差5倍多?。。。?/p>

到此,關(guān)于“ASP.NET數(shù)據(jù)緩存怎么理解”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI