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

溫馨提示×

溫馨提示×

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

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

asp.net性能優化之如何使用Redis緩存

發布時間:2021-08-09 10:22:38 來源:億速云 閱讀:118 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關asp.net性能優化之如何使用Redis緩存,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1:使用Redis緩存的優化思路

redis的使用場景很多,僅說下本人所用的一個場景:

1.1對于大量的數據讀取,為了緩解數據庫的壓力將一些不經常變化的而又讀取頻繁的數據存入redis緩存

大致思路如下:執行一個查詢

1.2首先判斷緩存中是否存在,如存在直接從Redis緩存中獲取。

1.3如果Redis緩存中不存在,實時讀取數據庫數據,同時寫入緩存(并設定緩存失效的時間)。

1.4缺點,如果直接修改了數據庫的數據而又沒有更新緩存,在緩存失效的時間內將導致讀取的Redis緩存是錯誤的數據。

2:Redis傻瓜式安裝

2.1雙擊執行redis-2.4.6-setup-64-bit.exe程序(下載地址:https://github.com/dmajkic/redis/downloads)

2.2可以將此服務設置為windows系統服務:

asp.net性能優化之如何使用Redis緩存

2.3測試是否安裝成功:

再回到redis文件夾下,找到redis-cli.exe文件,它就是Redis客戶端程序。打開,輸入:

Set test 123

即在Redis中插入了一條key為test,value為123的數據,繼續輸入:get test

得到value保存的數據123。

如果想知道Redis中一共保存了多少條數據,則可以使用:keys * 來查詢:

asp.net性能優化之如何使用Redis緩存

3:asp.net使用Redis緩存簡單示例

3.1測試Demo的結構

asp.net性能優化之如何使用Redis緩存

3.2添加引用

asp.net性能優化之如何使用Redis緩存

3.3將參數寫入配置文件

 <appSettings>
 <add key="WriteServerList" value="127.0.0.1:6379" />
 <add key="ReadServerList" value="127.0.0.1:6379" />
 <add key="MaxWritePoolSize" value="60" />
 <add key="MaxReadPoolSize" value="60" />
 <add key="AutoStart" value="true" />
 <add key="LocalCacheTime" value="1800" />
 <add key="RecordeLog" value="false" />
 </appSettings>

3.4讀取配置文件參數類

 public class RedisConfigInfo
 {
  public static string WriteServerList = ConfigurationManager.AppSettings["WriteServerList"];
  public static string ReadServerList = ConfigurationManager.AppSettings["ReadServerList"];
  public static int MaxWritePoolSize = Convert.ToInt32(ConfigurationManager.AppSettings["MaxWritePoolSize"]);
  public static int MaxReadPoolSize = Convert.ToInt32(ConfigurationManager.AppSettings["MaxReadPoolSize"]);
  public static int LocalCacheTime = Convert.ToInt32(ConfigurationManager.AppSettings["LocalCacheTime"]);
  public static bool AutoStart = ConfigurationManager.AppSettings["AutoStart"].Equals("true") ? true : false;
 }

3.5連接Redis,以及其他的一些操作類

public class RedisManager
 {
  private static PooledRedisClientManager prcm;
  /// <summary>
  /// 創建鏈接池管理對象
  /// </summary>
  private static void CreateManager()
  {
   string[] writeServerList = SplitString(RedisConfigInfo.WriteServerList, ",");
   string[] readServerList = SplitString(RedisConfigInfo.ReadServerList, ",");
   prcm = new PooledRedisClientManager(readServerList, writeServerList,
        new RedisClientManagerConfig
        {
         MaxWritePoolSize = RedisConfigInfo.MaxWritePoolSize,
         MaxReadPoolSize = RedisConfigInfo.MaxReadPoolSize,
         AutoStart = RedisConfigInfo.AutoStart,
        });
  }
  private static string[] SplitString(string strSource, string split)
  {
   return strSource.Split(split.ToArray());
  }
  /// <summary>
  /// 客戶端緩存操作對象
  /// </summary>
  public static IRedisClient GetClient()
  {
   if (prcm == null)
    CreateManager();
   return prcm.GetClient();
  }
  /// <summary>
  /// 緩存默認24小時過期
  /// </summary>
  public static TimeSpan expiresIn = TimeSpan.FromHours(24);
  /// <summary>
  /// 設置一個鍵值對,默認24小時過期
  /// </summary>
  /// <typeparam name="T"></typeparam>
  /// <param name="key"></param>
  /// <param name="value"></param>
  /// <param name="redisClient"></param>
  /// <returns></returns>
  public static bool Set<T>(string key, T value, IRedisClient redisClient)
  {
   return redisClient.Set<T>(key, value, expiresIn);
  }
  /// <summary>
  /// 將某類數據插入到list中
  /// </summary>
  /// <typeparam name="T"></typeparam>
  /// <param name="key">一般是BiaoDiGuid</param>
  /// <param name="item"></param>
  /// <param name="redisClient"></param>
  public static void Add2List<T>(string key, T item, IRedisClient redisClient)
  {
   var redis = redisClient.As<T>();
   var list = redis.Lists[GetListKey(key)];
   list.Add(item);
  }
  /// <summary>
  /// 獲取一個list
  /// </summary>
  /// <typeparam name="T"></typeparam>
  /// <param name="key"></param>
  /// <param name="redisClient"></param>
  /// <returns></returns>
  public static IRedisList<T> GetList<T>(string key, IRedisClient redisClient)
  {
   var redis = redisClient.As<T>();
   return redis.Lists[GetListKey(key)];
  }
  public static string GetListKey(string key, string prefix = null)
  {
   if (string.IsNullOrEmpty(prefix))
   {
    return "urn:" + key;
   }
   else
   {
    return "urn:" + prefix + ":" + key;
   }
  }
 }

3.6測試頁面前后臺代碼

<form id="form1" runat="server">
 <div>
  <asp:Label runat="server" ID="lbtest"></asp:Label>
  <asp:Button runat="server" ID ="btn1" OnClick="btn1_Click" Text="獲取測試數據"/>
 </div>
 </form>
protected void btn1_Click(object sender, EventArgs e)
  {
   string UserName;
   //讀取數據,如果緩存存在直接從緩存中讀取,否則從數據庫讀取然后寫入redis
   using (var redisClient = RedisManager.GetClient())
   {
    UserName = redisClient.Get<string>("UserInfo_123");
    if (string.IsNullOrEmpty(UserName)) //初始化緩存
    {
     //TODO 從數據庫中獲取數據,并寫入緩存
     UserName = "張三";
     redisClient.Set<string>("UserInfo_123", UserName, DateTime.Now.AddSeconds(10));
     lbtest.Text = "數據庫數據:" + "張三";
     return;
    }
    lbtest.Text = "Redis緩存數據:" + UserName;
   }
  }

測試結果圖

首次訪問緩存中數據不存在,獲取數據并寫入緩存,并設定有效期10秒

asp.net性能優化之如何使用Redis緩存

10秒內再次訪問讀取緩存中數據

asp.net性能優化之如何使用Redis緩存

關于“asp.net性能優化之如何使用Redis緩存”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

安远县| 监利县| 赤城县| 漯河市| 两当县| 江津市| 措美县| 长治县| 普定县| 乐昌市| 曲阳县| 崇州市| 清河县| 云浮市| 延安市| 东丽区| 于都县| 金坛市| 黄冈市| 毕节市| 长顺县| 永和县| 绥芬河市| 西峡县| 长泰县| 商水县| 东安县| 蓝山县| 巨野县| 多伦县| 西城区| 浦县| 林口县| 彰化市| 金塔县| 四会市| 汾西县| 旬阳县| 德清县| 家居| 新密市|