Asp.Net中Cache操作类的使用

  1. ///  < head >  
  2. ///   < function >  
  3. ///  存储类(存储UserInfo信息)  
  4. ///   </ function >  
  5. ///   < description >  
  6. ///  用Cache存储用户信息  
  7. ///  在指定间隔(TimeOut)内取,则可以从Cache中取,  
  8. ///  如果超出存储时间,则从数据库取用户信息数据  
  9. ///  作為所有用户信息的存儲類.  
  10. ///   </ description >  
  11. ///   < author >  
  12. ///   < name > ChengKing </ name >     
  13. ///   </ author >  
  14. ///  </ head >  
  15. using System;  
  16. using System.Web;  
  17. using System.Web.Caching;  
  18. namespace Common  
  19. {        
  20.         ///  < summary >  
  21. /// 存储类(存储UserInfo信息)  
  22. ///  </ summary >  
  23. public class Storage  
  24. {  
  25.   public Storage()  
  26.   {  
  27.   //  
  28.   // TODO: 在此处添加构造函数逻辑  
  29.   //  
  30.   }  
  31.   #region 方法  
  32.   //实现“一键一值”存储方法,最普通的存储方法    
  33.                 //(“一键一值”指一个Identify存储一个值,下面还有一个“一键多值”方法,因为有时候需要一个键存储多个变量对象值)  
  34.                 public static bool InsertIdentify(string strIdentify,object Info)  
  35.   {    
  36.   if(strIdentify != null && strIdentify.Length != 0 && userInfo != null)  
  37.   {  
  38.     //建立回调委托的一个实例  
  39.     CacheItemRemovedCallback  callBack  = new  CacheItemRemovedCallback(onRemove);  
  40.       
  41.     //以Identify为标志,将userInfo存入Cache  
  42.     HttpContext.Current.Cache.Insert(strIdentify,userInfo,null,   
  43.     System.DateTime.Now.AddSeconds(300),  
  44.     System.Web.Caching.Cache.NoSlidingExpiration,   
  45.     System.Web.Caching.CacheItemPriority.Default,  
  46.     callBack);  
  47.     return true;  
  48.   }    
  49.   else  
  50.   {  
  51.     return false;  
  52.   }  
  53.   }  
  54.     
  55.   //判断存储的"一键一值"值是否还存在(有没有过期失效或从来都未存储过)  
  56.                 public static bool ExistIdentify(string strIdentify)  
  57.   {  
  58.   if(HttpContext.Current.Cache[strIdentify] != null)  
  59.   {  
  60.     return true;  
  61.   }  
  62.   else  
  63.   {  
  64.     return false;  
  65.   }  
  66.   }  
  67.                 //插入"一键多值"方法  
  68.                 //***其中 StorageInfType是一个Enum,里面存有三种类型: UserInf SysInf PageInf   
  69.                 //这个枚举如下:  
  70.                 /*  
  71.                   public enum StorageInfType  
  72.             {  
  73.         ///  < summary > 用户信息 </ summary >  
  74.              UserInf  =  0 ,  
  75.     
  76.         ///  < summary > 页面信息 </ summary >  
  77.          PageInf  =  1 ,    
  78.     
  79.         ///  < summary > 系统信息 </ summary >  
  80.                SysInf  =  2  
  81.               }  
  82.                 //此枚举是自己定义的.可根据需要定义不同的枚举    
  83.                 //加个枚举目的是实现“一键多值”存储方法,事实上Cache中是存放了多个变量的,只不过被这个类封装了,  
  84.                 //程序员感到就好像是“一键一值”.  这样做目的是可以简化开发操作,否则程序员要存储几个变量就得定义几个Identify.  
  85.   public static bool InsertCommonInf(string strIdentify,StorageInfType enumInfType,object objValue)  
  86.   {    
  87.   if(strIdentify != null && strIdentify != "" && strIdentify.Length != 0 && objValue != null)  
  88.   {  
  89.     //RemoveCommonInf(strIdentify,enumInfType);   
  90.       
  91.     //建立回调委托的一个实例  
  92.             CacheItemRemovedCallback  callBack  = new  CacheItemRemovedCallback(onRemove);  
  93.     if( enumInfType  == StorageInfType.UserInf)  
  94.     {      
  95.       //以用户UserID+信息标志(StorageInfType枚举),将userInfo存入Cache  
  96.         HttpContext.Current.Cache.Insert(strIdentify+StorageInfType.UserInf.ToString(),objValue,null,   
  97.             System.DateTime.Now.AddSeconds(18000),      //单位秒  
  98.             System.Web.Caching.Cache.NoSlidingExpiration,   
  99.             System.Web.Caching.CacheItemPriority.Default,  
  100.             callBack);    
  101.     }  
  102.     if( enumInfType  == StorageInfType.PageInf)  
  103.     {  
  104.     //以用户UserID+信息标志(StorageInfType枚举),将PageInfo存入Cache  
  105.         HttpContext.Current.Cache.Insert(strIdentify+StorageInfType.PageInf.ToString(),objValue,null,   
  106.               System.DateTime.Now.AddSeconds(18000),  
  107.               System.Web.Caching.Cache.NoSlidingExpiration,   
  108.               System.Web.Caching.CacheItemPriority.Default,  
  109.               callBack);    
  110.     }  
  111.     if( enumInfType  == StorageInfType.SysInf)  
  112.     {  
  113.     //以用户UserID+信息标志(StorageInfType枚举),将SysInfo存入Cache  
  114.         HttpContext.Current.Cache.Insert(strIdentify+StorageInfType.SysInf.ToString(),objValue,null,   
  115.               System.DateTime.Now.AddSeconds(18000),  
  116.                 System.Web.Caching.Cache.NoSlidingExpiration,   
  117.               System.Web.Caching.CacheItemPriority.Default,  
  118.               callBack);    
  119.     }  
  120.     return true;  
  121.   }  
  122.   return false;  
  123.   }  
  124.                 //读取“一键多值”Identify的值  
  125.                 public static bool ReadIdentify(string strIdentify,out UserInfo userInfo)  
  126.   {  
  127.   //取出值  
  128.   if((UserInfo)HttpContext.Current.Cache[strIdentify] != null)  
  129.   {  
  130.      userInfo  = (UserInfo)HttpContext.Current.Cache[strIdentify];  
  131.     if( userInfo  == null)  
  132.     {  
  133.     return false;  
  134.     }  
  135.     return true;  
  136.   }    
  137.   else  
  138.   {  
  139.      userInfo  =  null ;  
  140.     return false;  
  141.   }    
  142.   }  
  143.   //手动移除“一键一值”对应的值  
  144.                 public static bool RemoveIdentify(string strIdentify)  
  145.   {  
  146.   //取出值  
  147.   if((UserInfo)HttpContext.Current.Cache[strIdentify] != null)  
  148.   {  
  149.     HttpContext.Current.Cache.Remove(strIdentify);          
  150.   }    
  151.   return true;    
  152.   }  
  153.                 //此方法在值失效之前调用,可以用于在失效之前更新数据库,或从数据库重新获取数据  
  154.   private static void onRemove(string strIdentify, object userInfo,CacheItemRemovedReason reason)  
  155.   {  
  156.     
  157.   }  
  158.   #endregion  
  159. }   
  160. }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值