主頁 > 知識庫 > ASP.NET性能優(yōu)化之構(gòu)建自定義文件緩存

ASP.NET性能優(yōu)化之構(gòu)建自定義文件緩存

熱門標(biāo)簽:銀行信貸電話機(jī)器人 400電話個人能不能辦理 合肥ai電銷機(jī)器人費(fèi)用 天津電銷外呼系統(tǒng)違法嗎 上海400客服電話怎么申請 滄州電銷外呼系統(tǒng)價(jià)格 凱立德地鐵站地圖標(biāo)注 手機(jī)外呼系統(tǒng)什么原理 溫州外呼系統(tǒng)招商
現(xiàn)在,借助于.NET4.0中的OutputCacheProvider,我們可以有多種選擇創(chuàng)建自己的緩存。如,我們可以把HTML輸出緩存存儲到memcached分布式集群服務(wù)器,或者M(jìn)ongoDB中(一種常用的面向文檔數(shù)據(jù)庫,不妨閱讀本篇http://msdn.microsoft.com/zh-cn/magazine/gg650661.aspx)。當(dāng)然,我們也可以把緩存作為文件存儲到硬盤上,考慮到可擴(kuò)展性,這是一種最廉價(jià)的做法,本文就是介紹如果構(gòu)建自定義文件緩存。

1:OutputCacheProvider

OutputCacheProvider是一個抽象基類,我們需要override其中的四個方法,它們分別是:

Add 方法,將指定項(xiàng)插入輸出緩存中。

Get 方法,返回對輸出緩存中指定項(xiàng)的引用。

Remove 方法,從輸出緩存中移除指定項(xiàng)。

Set 方法,將指定項(xiàng)插入輸出緩存中,如果該項(xiàng)已緩存,則覆蓋該項(xiàng)。

2:創(chuàng)建自己的文件緩存處理類

該類型為FileCacheProvider,代碼如下:

復(fù)制代碼 代碼如下:

public class FileCacheProvider : OutputCacheProvider
{
private static readonly ILog log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
public override void Initialize(string name, NameValueCollection attributes)
{
base.Initialize(name, attributes);
CachePath = HttpContext.Current.Server.MapPath(attributes["cachePath"]);
}
public override object Add(string key, object entry, DateTime utcExpiry)
{
Object obj = Get(key);
if (obj != null) //這一步很重要
{
return obj;
}
Set(key,entry,utcExpiry);
return entry;
}
public override object Get(string key)
{
string path = ConvertKeyToPath(key);
if (!File.Exists(path))
{
return null;
}
CacheItem item = null;
using (FileStream file = File.OpenRead(path))
{
var formatter = new BinaryFormatter();
item = (CacheItem)formatter.Deserialize(file);
}
if (item.ExpiryDate = DateTime.Now.ToUniversalTime())
{
log.Info(item.ExpiryDate + "*" + key);
Remove(key);
return null;
}
return item.Item;
}
public override void Set(string key, object entry, DateTime utcExpiry)
{
CacheItem item = new CacheItem(entry, utcExpiry);
string path = ConvertKeyToPath(key);
using (FileStream file = File.OpenWrite(path))
{
BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(file, item);
}
}
public override void Remove(string key)
{
string path = ConvertKeyToPath(key);
if (File.Exists(path))
File.Delete(path);
}
public string CachePath
{
get;
set;
}
private string ConvertKeyToPath(string key)
{
string file = key.Replace('/', '-');
file += ".txt";
return Path.Combine(CachePath, file);
}
}
[Serializable]
public class CacheItem
{
public DateTime ExpiryDate;
public object Item;
public CacheItem(object entry, DateTime utcExpiry)
{
Item = entry;
ExpiryDate = utcExpiry;
}
}

有兩個地方需要特別說明:
在Add方法中,有一個條件判斷,必須做出這樣的處理,否則緩存機(jī)制將會緩存第一次的結(jié)果,過了有效期后緩存講失效并不再重建;
在示例程序中,我們簡單的將緩存放到了Cache目錄下,在實(shí)際的項(xiàng)目實(shí)踐中,考慮到緩存的頁面將是成千上萬的,所以我們必須要做目錄分級,否則尋找并讀取緩存文件將會成為效率瓶頸,這會耗盡CPU。
3:配置文件
我們需要在Web.config中配置緩存處理程序是自定義的FileCacheProvider,即在 system.web>下添加節(jié)點(diǎn):
復(fù)制代碼 代碼如下:

caching>
outputCache defaultProvider="FileCache">
providers>
add name="FileCache" type="MvcApplication2.Common.FileCacheProvider" cachePath="~/Cache" />
/providers>
/outputCache>
/caching>

4:緩存的使用
我們假設(shè)在MVC的控制中使用(如果要在ASP.NET頁面中使用,則在頁面中包含%@OutputCache VaryByParam="none" Duration="10" %>),可以看到,Index是未進(jìn)行輸出緩存的,而Index2進(jìn)行了輸出緩存,緩存時(shí)間為10秒。
復(fù)制代碼 代碼如下:

public class HomeController : Controller
{
private static readonly ILog log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
static string s_conn = "Data Source=192.168.0.77;Initial Catalog=luminjidb;User Id=sa;Password=sa;";
public ActionResult Index()
{
using (DataSet ds = Common.SqlHelper.ExecuteDataset(s_conn, CommandType.Text, "select top 1* from NameTb a, DepTb b where a.DepID = b.ID ORDER BY NEWID()"))
{
ViewBag.Message = ds.Tables[0].Rows[0]["name"].ToString();
}
return View();
}
[OutputCache(Duration = 10, VaryByParam = "none")]
public ActionResult Index2()
{
using (DataSet ds = Common.SqlHelper.ExecuteDataset(s_conn, CommandType.Text, "select top 1* from NameTb a, DepTb b where a.DepID = b.ID ORDER BY NEWID()"))
{
ViewBag.Message = ds.Tables[0].Rows[0]["name"].ToString();
}
return View();
}
}

5:查看下效果

上面的代碼,在訪問了Index2后,將會在Cache文件夾下產(chǎn)生緩存文件,如下:

image

現(xiàn)在,我們開始評價(jià)下有輸出緩存和無輸出緩存的性能對比,模擬100個用戶并發(fā)1000次請求如下:

image

可以看到,有輸出緩存后,吞吐率明顯提高了10倍。

6:代碼下載

FileCacheProvider的原始代碼來自于網(wǎng)絡(luò),我修改了其中的BUG,全部代碼下載如下:MvcApplication20110907.rar

您可能感興趣的文章:
  • ASP.NET性能優(yōu)化之局部緩存分析
  • ASP.NET 性能優(yōu)化之反向代理緩存使用介紹
  • ASP.NET性能優(yōu)化之讓瀏覽器緩存動態(tài)網(wǎng)頁的方法
  • ASP.NET性能優(yōu)化小結(jié)(ASP.NETC#)
  • asp.net 程序性能優(yōu)化的七個方面 (c#(或vb.net)程序改進(jìn))
  • ASP.NET比較常用的26個性能優(yōu)化技巧
  • asp.net小談網(wǎng)站性能優(yōu)化
  • ASP.NET性能優(yōu)化之減少請求
  • ASP.NET技巧:同時(shí)對多個文件進(jìn)行大量寫操作對性能優(yōu)化
  • asp.net性能優(yōu)化之使用Redis緩存(入門)

標(biāo)簽:白城 七臺河 洛陽 溫州 怒江 金華 赤峰 酒泉

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET性能優(yōu)化之構(gòu)建自定義文件緩存》,本文關(guān)鍵詞  ASP.NET,性能,優(yōu)化,之,構(gòu)建,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP.NET性能優(yōu)化之構(gòu)建自定義文件緩存》相關(guān)的同類信息!
  • 本頁收集關(guān)于ASP.NET性能優(yōu)化之構(gòu)建自定義文件緩存的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章