|
最近在做項(xiàng)目的時(shí)候,采用用Codesmith和NETtiers生成的框架來實(shí)現(xiàn),生成的代碼核心是基于企業(yè)庫的。所以最近在惡補(bǔ)企業(yè)庫,對(duì)于緩存的學(xué)習(xí)當(dāng)然是必不可少的,尤其是經(jīng)常要用到得緩存依賴,這里我用到的是文件依賴來舉例子,其他的都大同小異,主要就是要實(shí)現(xiàn)ICacheItemExpiration中的返回值類型為bool類型的HasExpired方法,來控制到期與否,實(shí)現(xiàn)此方法是關(guān)鍵所在。下面是程序清單,歡迎大家指正:
step1 實(shí)現(xiàn)緩存到期接口,此類就為緩存項(xiàng)依賴的類,為緩存依賴的核心,尤其是其中HasExpired方法的定義,此類的核心就是使用lastCount是否變化來判斷緩存是否到期;如果有變化則HasExpired方法返回true,否則返回false。
Code
using System;
using System.Web;
using Microsoft.Practices.EnterpriseLibrary.Caching;
/// <summary>
///CacheItemDependency 的摘要說明
/// </summary>
public class CacheItemDependency : ICacheItemExpiration
{
//依賴緩存項(xiàng)鍵
private readonly string dependencyCacheKey;
//依賴緩存項(xiàng)值
private System.Int32 lastCount;
#region Constructor
/// <summary>
/// 初始化依賴緩存項(xiàng),如果此緩存管理對(duì)象存在,則取出緩存的數(shù)據(jù);若不存在,就要對(duì)此緩存管理賦值
/// </summary>
/// <param name="cacheKey">依賴緩存項(xiàng)的鍵</param>
public CacheItemDependency(string cacheKey)
{
dependencyCacheKey = cacheKey;
ICacheManager cacheManager = CacheFactory.GetCacheManager();
lastCount = Int32.MinValue;
if (cacheManager != null)
{
if (cacheManager.Contains(cacheKey))
{
object o = cacheManager.GetData(cacheKey);
if (o != null)
{
this.lastCount = (int)o;
}
lastCount = (int)cacheManager.GetData(cacheKey);
}
else
{
cacheManager.Add(cacheKey, lastCount);
}
}
}
#endregion
#region Properties
public string DependencyCacheKey
{
get { return dependencyCacheKey; }
}
public System.Int32 LastCount
{
get { return lastCount; }
}
#endregion
#region ICacheItemExpiration Members
public bool HasExpired()
{
ICacheManager cacheManager = CacheFactory.GetCacheManager();
if (cacheManager == null)
{
return true;
}
System.Int32 currentCount = (int)cacheManager.GetData(dependencyCacheKey);
if (currentCount != lastCount)
{
return true;
}
else
{
return false;
}
}
public void Notify()
{
}
public void Initialize(CacheItem owningCacheItem)
{
}
#endregion
}
NET技術(shù):企業(yè)庫緩存依賴的實(shí)現(xiàn)-基于文件依賴,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。