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

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

asp.net性能優(yōu)化之如何使用Redis緩存-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)asp.net性能優(yōu)化之如何使用Redis緩存,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

站在用戶的角度思考問(wèn)題,與客戶深入溝通,找到安鄉(xiāng)網(wǎng)站設(shè)計(jì)與安鄉(xiāng)網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類(lèi)型包括:成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、申請(qǐng)域名、網(wǎng)頁(yè)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋安鄉(xiāng)地區(qū)。

1:使用Redis緩存的優(yōu)化思路

redis的使用場(chǎng)景很多,僅說(shuō)下本人所用的一個(gè)場(chǎng)景:

1.1對(duì)于大量的數(shù)據(jù)讀取,為了緩解數(shù)據(jù)庫(kù)的壓力將一些不經(jīng)常變化的而又讀取頻繁的數(shù)據(jù)存入redis緩存

大致思路如下:執(zhí)行一個(gè)查詢

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

1.3如果Redis緩存中不存在,實(shí)時(shí)讀取數(shù)據(jù)庫(kù)數(shù)據(jù),同時(shí)寫(xiě)入緩存(并設(shè)定緩存失效的時(shí)間)。

1.4缺點(diǎn),如果直接修改了數(shù)據(jù)庫(kù)的數(shù)據(jù)而又沒(méi)有更新緩存,在緩存失效的時(shí)間內(nèi)將導(dǎo)致讀取的Redis緩存是錯(cuò)誤的數(shù)據(jù)。

2:Redis傻瓜式安裝

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

2.2可以將此服務(wù)設(shè)置為windows系統(tǒng)服務(wù):

asp.net性能優(yōu)化之如何使用Redis緩存

2.3測(cè)試是否安裝成功:

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

Set test 123

即在Redis中插入了一條key為test,value為123的數(shù)據(jù),繼續(xù)輸入:get test

得到value保存的數(shù)據(jù)123。

如果想知道Redis中一共保存了多少條數(shù)據(jù),則可以使用:keys * 來(lái)查詢:

asp.net性能優(yōu)化之如何使用Redis緩存

3:asp.net使用Redis緩存簡(jiǎn)單示例

3.1測(cè)試Demo的結(jié)構(gòu)

asp.net性能優(yōu)化之如何使用Redis緩存

3.2添加引用

asp.net性能優(yōu)化之如何使用Redis緩存

3.3將參數(shù)寫(xiě)入配置文件

 
 
 
 
 
 
 
 
 

3.4讀取配置文件參數(shù)類(lèi)

 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,以及其他的一些操作類(lèi)

public class RedisManager
 {
  private static PooledRedisClientManager prcm;
  /// 
  /// 創(chuàng)建鏈接池管理對(duì)象
  /// 
  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());
  }
  /// 
  /// 客戶端緩存操作對(duì)象
  /// 
  public static IRedisClient GetClient()
  {
   if (prcm == null)
    CreateManager();
   return prcm.GetClient();
  }
  /// 
  /// 緩存默認(rèn)24小時(shí)過(guò)期
  /// 
  public static TimeSpan expiresIn = TimeSpan.FromHours(24);
  /// 
  /// 設(shè)置一個(gè)鍵值對(duì),默認(rèn)24小時(shí)過(guò)期
  /// 
  /// 
  /// 
  /// 
  /// 
  /// 
  public static bool Set(string key, T value, IRedisClient redisClient)
  {
   return redisClient.Set(key, value, expiresIn);
  }
  /// 
  /// 將某類(lèi)數(shù)據(jù)插入到list中
  /// 
  /// 
  /// 一般是BiaoDiGuid
  /// 
  /// 
  public static void Add2List(string key, T item, IRedisClient redisClient)
  {
   var redis = redisClient.As();
   var list = redis.Lists[GetListKey(key)];
   list.Add(item);
  }
  /// 
  /// 獲取一個(gè)list
  /// 
  /// 
  /// 
  /// 
  /// 
  public static IRedisList GetList(string key, IRedisClient redisClient)
  {
   var redis = redisClient.As();
   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測(cè)試頁(yè)面前后臺(tái)代碼


 
       
 
protected void btn1_Click(object sender, EventArgs e)
  {
   string UserName;
   //讀取數(shù)據(jù),如果緩存存在直接從緩存中讀取,否則從數(shù)據(jù)庫(kù)讀取然后寫(xiě)入redis
   using (var redisClient = RedisManager.GetClient())
   {
    UserName = redisClient.Get("UserInfo_123");
    if (string.IsNullOrEmpty(UserName)) //初始化緩存
    {
     //TODO 從數(shù)據(jù)庫(kù)中獲取數(shù)據(jù),并寫(xiě)入緩存
     UserName = "張三";
     redisClient.Set("UserInfo_123", UserName, DateTime.Now.AddSeconds(10));
     lbtest.Text = "數(shù)據(jù)庫(kù)數(shù)據(jù):" + "張三";
     return;
    }
    lbtest.Text = "Redis緩存數(shù)據(jù):" + UserName;
   }
  }

測(cè)試結(jié)果圖

首次訪問(wèn)緩存中數(shù)據(jù)不存在,獲取數(shù)據(jù)并寫(xiě)入緩存,并設(shè)定有效期10秒

asp.net性能優(yōu)化之如何使用Redis緩存

10秒內(nèi)再次訪問(wèn)讀取緩存中數(shù)據(jù)

asp.net性能優(yōu)化之如何使用Redis緩存

關(guān)于“asp.net性能優(yōu)化之如何使用Redis緩存”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。


分享標(biāo)題:asp.net性能優(yōu)化之如何使用Redis緩存-創(chuàng)新互聯(lián)
URL地址:http://weahome.cn/article/gjgpj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部