真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Cache如何在Asp.Net中使用-創(chuàng)新互聯(lián)

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)Cache如何在Asp.Net中使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

在馬邊彝族等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供做網(wǎng)站、成都做網(wǎng)站 網(wǎng)站設(shè)計制作按需制作,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),高端網(wǎng)站設(shè)計,成都營銷網(wǎng)站建設(shè),外貿(mào)營銷網(wǎng)站建設(shè),馬邊彝族網(wǎng)站建設(shè)費用合理。

使用方法如下

/// 
/// 
///  存儲類(存儲UserInfo信息)
/// 
/// 
///  用Cache存儲用戶信息
///  在指定間隔(TimeOut)內(nèi)取,則可以從Cache中取,
///  如果超出存儲時間,則從數(shù)據(jù)庫取用戶信息數(shù)據(jù)
///  作為所有用戶信息的存儲類.
/// 
/// 
///  ChengKing  
/// 
/// 
using System;
using System.Web;
using System.Web.Caching;
namespace Common
{   
 /// 
 /// 存儲類(存儲UserInfo信息)
 /// 
 public class Storage
 {
 public Storage()
 {
  //
  // TODO: 在此處添加構(gòu)造函數(shù)邏輯
  //
 }
 #region 方法
 //實現(xiàn)“一鍵一值”存儲方法,最普通的存儲方法  
        //(“一鍵一值”指一個Identify存儲一個值,下面還有一個“一鍵多值”方法,因為有時候需要一個鍵存儲多個變量對象值)
        public static bool InsertIdentify(string strIdentify,object Info)
 {  
  if(strIdentify != null && strIdentify.Length != 0 && userInfo != null)
  {
  //建立回調(diào)委托的一個實例
    CacheItemRemovedCallback callBack =new CacheItemRemovedCallback(onRemove);
  //以Identify為標(biāo)志,將userInfo存入Cache
  HttpContext.Current.Cache.Insert(strIdentify,userInfo,null, 
        System.DateTime.Now.AddSeconds(300),
        System.Web.Caching.Cache.NoSlidingExpiration, 
        System.Web.Caching.CacheItemPriority.Default,
        callBack);
  return true;
  }  
  else
  {
  return false;
  }
 }
 //判斷存儲的"一鍵一值"值是否還存在(有沒有過期失效或從來都未存儲過)
      public static bool ExistIdentify(string strIdentify)
 {
  if(HttpContext.Current.Cache[strIdentify] != null)
  {
  return true;
  }
  else
  {
  return false;
  }
 }
 //插入"一鍵多值"方法
 //***其中 StorageInfType是一個Enum,里面存有三種類型: UserInf SysInf PageInf 
 //這個枚舉如下:
 /*
      public enum StorageInfType
      {
    /// 用戶信息
      UserInf = 0,
    /// 頁面信息
    PageInf = 1, 
    /// 系統(tǒng)信息
        SysInf = 2
       }
        //此枚舉是自己定義的.可根據(jù)需要定義不同的枚舉 
        //加個枚舉目的是實現(xiàn)“一鍵多值”存儲方法,事實上Cache中是存放了多個變量的,只不過被這個類封裝了,
        //程序員感到就好像是“一鍵一值”.  這樣做目的是可以簡化開發(fā)操作,否則程序員要存儲幾個變量就得定義幾個Identify.
 public static bool InsertCommonInf(string strIdentify,StorageInfType enumInfType,object objValue)
 {  
  if(strIdentify != null && strIdentify != "" && strIdentify.Length != 0 && objValue != null)
  {
  //RemoveCommonInf(strIdentify,enumInfType); 
  //建立回調(diào)委托的一個實例
        CacheItemRemovedCallback callBack =new CacheItemRemovedCallback(onRemove);
  if(enumInfType == StorageInfType.UserInf)
  {  
    //以用戶UserID+信息標(biāo)志(StorageInfType枚舉),將userInfo存入Cache
    HttpContext.Current.Cache.Insert(strIdentify+StorageInfType.UserInf.ToString(),objValue,null, 
         System.DateTime.Now.AddSeconds(18000),    //單位秒
         System.Web.Caching.Cache.NoSlidingExpiration, 
         System.Web.Caching.CacheItemPriority.Default,
         callBack); 
  }
  if(enumInfType == StorageInfType.PageInf)
  {
   //以用戶UserID+信息標(biāo)志(StorageInfType枚舉),將PageInfo存入Cache
     HttpContext.Current.Cache.Insert(strIdentify+StorageInfType.PageInf.ToString(),objValue,null, 
          System.DateTime.Now.AddSeconds(18000),
          System.Web.Caching.Cache.NoSlidingExpiration, 
          System.Web.Caching.CacheItemPriority.Default,
          callBack); 
  }
  if(enumInfType == StorageInfType.SysInf)
  {
   //以用戶UserID+信息標(biāo)志(StorageInfType枚舉),將SysInfo存入Cache
   HttpContext.Current.Cache.Insert(strIdentify+StorageInfType.SysInf.ToString(),objValue,null, 
          System.DateTime.Now.AddSeconds(18000),
           System.Web.Caching.Cache.NoSlidingExpiration, 
          System.Web.Caching.CacheItemPriority.Default,
          callBack); 
  }
  return true;
  }
  return false;
 }
        //讀取“一鍵多值”Identify的值
        public static bool ReadIdentify(string strIdentify,out UserInfo userInfo)
 {
  //取出值
  if((UserInfo)HttpContext.Current.Cache[strIdentify] != null)
  {
  userInfo = (UserInfo)HttpContext.Current.Cache[strIdentify];
  if(userInfo == null)
  {
   return false;
  }
  return true;
  }  
  else
  {
  userInfo = null;
  return false;
  }  
 }
 //手動移除“一鍵一值”對應(yīng)的值
        public static bool RemoveIdentify(string strIdentify)
 {
  //取出值
  if((UserInfo)HttpContext.Current.Cache[strIdentify] != null)
  {
  HttpContext.Current.Cache.Remove(strIdentify);    
  }  
  return true; 
 }
        //此方法在值失效之前調(diào)用,可以用于在失效之前更新數(shù)據(jù)庫,或從數(shù)據(jù)庫重新獲取數(shù)據(jù)
 private static void onRemove(string strIdentify, object userInfo,CacheItemRemovedReason reason)
 {
 }
 #endregion
 } 
}

分享名稱:Cache如何在Asp.Net中使用-創(chuàng)新互聯(lián)
文章路徑:http://weahome.cn/article/dhoecj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部