亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

ASP.NET中怎么構建自定義文件緩存

發布時間:2021-12-06 15:25:38 來源:億速云 閱讀:182 作者:iii 欄目:編程語言

本篇內容介紹了“ASP.NET中怎么構建自定義文件緩存”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

ASP.NET的輸出緩存(即靜態HTML)在.NET4.0前一直是基于內存的。這意味著如果我們的站點含有大量的緩存,則很容易消耗掉本機內存。現在,借助于.NET4.0中的OutputCacheProvider,我們可以有多種選擇創建自己的緩存。如,我們可以把HTML輸出緩存存儲到memcached分布式集群服務器,或者MongoDB中。當然,我們也可以把緩存作為文件存儲到硬盤上,考慮到可擴展性,這是一種最廉價的做法。

1:OutputCacheProvider

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

Add 方法,將指定項插入輸出緩存中。

Get 方法,返回對輸出緩存中指定項的引用。

Remove 方法,從輸出緩存中移除指定項。

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

2:創建自己的文件緩存處理類

該類型為FileCacheProvider,代碼如下:

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方法中,有一個條件判斷,必須做出這樣的處理,否則緩存機制將會緩存***次的結果,過了有效期后緩存講失效并不再重建;

在示例程序中,我們簡單的將緩存放到了Cache目錄下,在實際的項目實踐中,考慮到緩存的頁面將是成千上萬的,所以我們必須要做目錄分級,否則尋找并讀取緩存文件將會成為效率瓶頸,這會耗盡CPU。

3:配置文件

我們需要在Web.config中配置緩存處理程序是自定義的FileCacheProvider,即在 <system.web>下添加節點:

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

4:緩存的使用

我們假設在MVC的控制中使用(如果要在ASP.NET頁面中使用,則在頁面中包含<%@OutputCache VaryByParam="none" Duration="10" %>),可以看到,Index是未進行輸出緩存的,而Index2進行了輸出緩存,緩存時間為10秒。

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文件夾下產生緩存文件,如下:

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

ASP.NET中怎么構建自定義文件緩存

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

6:代碼下載

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

“ASP.NET中怎么構建自定義文件緩存”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

松潘县| 盐城市| 河津市| 上栗县| 漳州市| 额尔古纳市| 关岭| 乐陵市| 方正县| 云南省| 三门峡市| 阿勒泰市| 鄂托克前旗| 九寨沟县| 巴里| 金堂县| 定西市| 文化| 鹰潭市| 定陶县| 汝阳县| 靖西县| 平邑县| 新干县| 左权县| 大兴区| 色达县| 永城市| 邯郸市| 株洲县| 偏关县| 紫金县| 鸡泽县| 石狮市| 贺州市| 抚宁县| 平邑县| 沙坪坝区| 铁力市| 类乌齐县| 常熟市|