中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Cache如何在Asp.Net中使用

發布時間:2020-12-09 17:57:46 來源:億速云 閱讀:137 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關Cache如何在Asp.Net中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

使用方法如下

/// <head>
/// <function>
///  存儲類(存儲UserInfo信息)
/// </function>
/// <description>
///  用Cache存儲用戶信息
///  在指定間隔(TimeOut)內取,則可以從Cache中取,
///  如果超出存儲時間,則從數據庫取用戶信息數據
///  作為所有用戶信息的存儲類.
/// </description>
/// <author>
///  <name>ChengKing</name>  
/// </author>
/// </head>
using System;
using System.Web;
using System.Web.Caching;
namespace Common
{   
 /// <summary>
 /// 存儲類(存儲UserInfo信息)
 /// </summary>
 public class Storage
 {
 public Storage()
 {
  //
  // TODO: 在此處添加構造函數邏輯
  //
 }
 #region 方法
 //實現“一鍵一值”存儲方法,最普通的存儲方法  
        //(“一鍵一值”指一個Identify存儲一個值,下面還有一個“一鍵多值”方法,因為有時候需要一個鍵存儲多個變量對象值)
        public static bool InsertIdentify(string strIdentify,object Info)
 {  
  if(strIdentify != null && strIdentify.Length != 0 && userInfo != null)
  {
  //建立回調委托的一個實例
    CacheItemRemovedCallback callBack =new CacheItemRemovedCallback(onRemove);
  //以Identify為標志,將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
      {
    /// <summary>用戶信息</summary>
      UserInf = 0,
    /// <summary>頁面信息</summary>
    PageInf = 1, 
    /// <summary>系統信息</summary>
        SysInf = 2
       }
        //此枚舉是自己定義的.可根據需要定義不同的枚舉 
        //加個枚舉目的是實現“一鍵多值”存儲方法,事實上Cache中是存放了多個變量的,只不過被這個類封裝了,
        //程序員感到就好像是“一鍵一值”.  這樣做目的是可以簡化開發操作,否則程序員要存儲幾個變量就得定義幾個Identify.
 public static bool InsertCommonInf(string strIdentify,StorageInfType enumInfType,object objValue)
 {  
  if(strIdentify != null && strIdentify != "" && strIdentify.Length != 0 && objValue != null)
  {
  //RemoveCommonInf(strIdentify,enumInfType); 
  //建立回調委托的一個實例
        CacheItemRemovedCallback callBack =new CacheItemRemovedCallback(onRemove);
  if(enumInfType == StorageInfType.UserInf)
  {  
    //以用戶UserID+信息標志(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+信息標志(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+信息標志(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;
  }  
 }
 //手動移除“一鍵一值”對應的值
        public static bool RemoveIdentify(string strIdentify)
 {
  //取出值
  if((UserInfo)HttpContext.Current.Cache[strIdentify] != null)
  {
  HttpContext.Current.Cache.Remove(strIdentify);    
  }  
  return true; 
 }
        //此方法在值失效之前調用,可以用于在失效之前更新數據庫,或從數據庫重新獲取數據
 private static void onRemove(string strIdentify, object userInfo,CacheItemRemovedReason reason)
 {
 }
 #endregion
 } 
}

上述就是小編為大家分享的Cache如何在Asp.Net中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

武强县| 宁夏| 鄂伦春自治旗| 崇礼县| 老河口市| 宜城市| 沁源县| 德江县| 化德县| 象山县| 旬邑县| 霸州市| 渑池县| 塘沽区| 上饶市| 镇平县| 台安县| 永泰县| 苏尼特右旗| 闵行区| 历史| 伊吾县| 刚察县| 滁州市| 鄂托克旗| 夏河县| 高碑店市| 元氏县| 宁强县| 辽宁省| 彭州市| 榆树市| 昂仁县| 陆良县| 饶阳县| 出国| 微博| 海伦市| 南安市| 晋宁县| 汉中市|