1. <add key="RedisServers" value="172.20.2.90:9379,password=Aa+123456789" />
  1. using StackExchange.Redis;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5.  
  6. namespace APP.Common
  7. {
  8. /// <summary>
  9. /// StackExchangeRedis帮助类
  10. /// </summary>
  11. public sealed class RedisHelper
  12. {
  13. /// <summary>
  14. /// Redis服务器地址
  15. /// </summary>
  16. private static readonly string ConnectionString = System.Configuration.ConfigurationManager.AppSettings["RedisServers"];
  17.  
  18. /// <summary>
  19. /// 静态变量锁
  20. /// </summary>
  21. private static object _locker = new Object();
  22.  
  23. /// <summary>
  24. /// 静态实例
  25. /// </summary>
  26. private static ConnectionMultiplexer _instance = null;
  27.  
  28. /// <summary>
  29. /// 使用一个静态属性来返回已连接的实例,如下列中所示。这样,一旦 ConnectionMultiplexer 断开连接,便可以初始化新的连接实例。
  30. /// </summary>
  31. private static ConnectionMultiplexer Instance
  32. {
  33. get
  34. {
  35. try
  36. {
  37. if (_instance == null)
  38. {
  39. lock (_locker)
  40. {
  41. if (_instance == null || !_instance.IsConnected)
  42. {
  43. _instance = ConnectionMultiplexer.Connect(ConnectionString);
  44. //注册如下事件
  45. _instance.ConnectionFailed += MuxerConnectionFailed;
  46. _instance.ConnectionRestored += MuxerConnectionRestored;
  47. _instance.ErrorMessage += MuxerErrorMessage;
  48. _instance.ConfigurationChanged += MuxerConfigurationChanged;
  49. _instance.HashSlotMoved += MuxerHashSlotMoved;
  50. _instance.InternalError += MuxerInternalError;
  51. }
  52. }
  53. }
  54.  
  55. }
  56. catch (Exception ex)
  57. {
  58. LogHelper.Error(typeof(RedisHelper), string.Format("redis初始化异常,连接字符串={0}", ConnectionString), ex);
  59. }
  60. return _instance;
  61. }
  62. }
  63.  
  64. /// <summary>
  65. /// 获取redis数据库对象
  66. /// </summary>
  67. /// <returns></returns>
  68. private static IDatabase GetDatabase()
  69. {
  70. return Instance.GetDatabase();
  71. }
  72.  
  73. /// <summary>
  74. /// 检查Key是否存在
  75. /// </summary>
  76. /// <param name="key"></param>
  77. /// <returns></returns>
  78. public static bool Exists(string key)
  79. {
  80. if (string.IsNullOrWhiteSpace(key))
  81. {
  82. return false;
  83. }
  84. try
  85. {
  86. return GetDatabase().KeyExists(key);
  87. }
  88. catch (Exception ex)
  89. {
  90. LogHelper.Error(typeof(RedisHelper), string.Format("检查Key是否存在异常,缓存key={0}", key), ex);
  91. }
  92. return false;
  93. }
  94.  
  95. /// <summary>
  96. /// 设置String类型的缓存对象(如果value是null或者空字符串则设置失败)
  97. /// </summary>
  98. /// <param name="key"></param>
  99. /// <param name="value"></param>
  100. /// <param name="ts">过期时间</param>
  101. public static bool SetString(string key, string value, TimeSpan? ts = null)
  102. {
  103. if (string.IsNullOrWhiteSpace(value))
  104. {
  105. return false;
  106. }
  107. try
  108. {
  109. return GetDatabase().StringSet(key, value, ts);
  110. }
  111. catch (Exception ex)
  112. {
  113. LogHelper.Error(typeof(RedisHelper), string.Format("设置string类型缓存异常,缓存key={0},缓存值={1}", key, value), ex);
  114. }
  115. return false;
  116. }
  117.  
  118. /// <summary>
  119. /// 根据key获取String类型的缓存对象
  120. /// </summary>
  121. /// <param name="key"></param>
  122. /// <returns></returns>
  123. public static string GetString(string key)
  124. {
  125. try
  126. {
  127. return GetDatabase().StringGet(key);
  128. }
  129. catch (Exception ex)
  130. {
  131. LogHelper.Error(typeof(RedisHelper), string.Format("获取string类型缓存异常,缓存key={0}", key), ex);
  132. }
  133. return null;
  134. }
  135.  
  136. /// <summary>
  137. /// 删除缓存
  138. /// </summary>
  139. /// <param name="key">key</param>
  140. /// <returns></returns>
  141. public static bool KeyDelete(string key)
  142. {
  143. try
  144. {
  145. return GetDatabase().KeyDelete(key);
  146. }
  147. catch (Exception ex)
  148. {
  149. LogHelper.Error(typeof(RedisHelper), "删除缓存异常,缓存key={0}" + key, ex);
  150. return false;
  151. }
  152. }
  153. /// <summary>
  154. /// 设置Hash类型缓存对象(如果value没有公共属性则不设置缓存)
  155. /// 会使用反射将object对象所有公共属性作为Hash列存储
  156. /// </summary>
  157. /// <param name="key"></param>
  158. /// <param name="value"></param>
  159. public static void SetHash(string key, object value)
  160. {
  161. if (null == value)
  162. {
  163. return;
  164. }
  165. try
  166. {
  167. List<HashEntry> list = new List<HashEntry>();
  168. Type type = value.GetType();
  169. var propertyArray = type.GetProperties();
  170. foreach (var property in propertyArray)
  171. {
  172. string propertyName = property.Name;
  173. string propertyValue = property.GetValue(value).ToString();
  174. list.Add(new HashEntry(propertyName, propertyValue));
  175. }
  176. if (list.Count < )
  177. {
  178. return;
  179. }
  180. IDatabase db = GetDatabase();
  181. db.HashSet(key, list.ToArray());
  182. }
  183. catch (Exception ex)
  184. {
  185. LogHelper.Error(typeof(RedisHelper), string.Format("设置Hash类型缓存异常,缓存key={0},缓存值={1}", key, Utils.SerializeObject(value)), ex);
  186. }
  187. }
  188.  
  189. /// <summary>
  190. /// 设置Hash类型缓存对象(用于存储对象)
  191. /// </summary>
  192. /// <param name="key">Key</param>
  193. /// <param name="value">字典,key是列名 value是列的值</param>
  194. public static void SetHash(string key, Dictionary<string, string> value)
  195. {
  196. if (null == value || value.Count < )
  197. {
  198. return;
  199. }
  200. try
  201. {
  202. HashEntry[] array = (from item in value select new HashEntry(item.Key, item.Value)).ToArray();
  203. IDatabase db = GetDatabase();
  204. db.HashSet(key, array);
  205. }
  206. catch (Exception ex)
  207. {
  208. LogHelper.Error(typeof(RedisHelper), string.Format("设置Hash类型缓存异常,缓存key={0},缓存对象值={1}", key, string.Join(",", value)), ex);
  209. }
  210. }
  211.  
  212. /// <summary>
  213. /// 根据key和列数组从缓存中拿取数据(如果fieldList为空或者个数小于0返回null)
  214. /// </summary>
  215. /// <param name="key">缓存Key</param>
  216. /// <param name="fieldList">列数组</param>
  217. /// <returns>根据列数组构造一个字典,字典中的列与入参列数组相同,字典中的值是每一列的值</returns>
  218. public static Dictionary<string, string> GetHash(string key, List<string> fieldList)
  219. {
  220. if (null == fieldList || fieldList.Count < )
  221. {
  222. return null;
  223. }
  224. try
  225. {
  226. Dictionary<string, string> dic = new Dictionary<string, string>();
  227. RedisValue[] array = (from item in fieldList select (RedisValue)item).ToArray();
  228. IDatabase db = GetDatabase();
  229. RedisValue[] redisValueArray = db.HashGet(key, array);
  230. for (int i = ; i < redisValueArray.Length; i++)
  231. {
  232. string field = fieldList[i];
  233. string value = redisValueArray[i];
  234. dic.Add(field, value);
  235. }
  236. return dic;
  237. }
  238. catch (Exception ex)
  239. {
  240. LogHelper.Error(typeof(RedisHelper), string.Format("获取Hash类型缓存异常,缓存key={0},列数组={1}", key, string.Join(",", fieldList)), ex);
  241. }
  242. return null;
  243. }
  244.  
  245. /// <summary>
  246. /// 使用Redis incr 记录某个Key的调用次数
  247. /// </summary>
  248. /// <param name="key"></param>
  249. public static long SaveInvokeCount(string key)
  250. {
  251. try
  252. {
  253. return GetDatabase().StringIncrement(key);
  254. }
  255. catch { return -; }
  256. }
  257.  
  258. /// <summary>
  259. /// 配置更改时
  260. /// </summary>
  261. /// <param name="sender"></param>
  262. /// <param name="e"></param>
  263. private static void MuxerConfigurationChanged(object sender, EndPointEventArgs e)
  264. {
  265. LogHelper.Warn(typeof(RedisHelper), "MuxerConfigurationChanged=>e.EndPoint=" + e.EndPoint, null);
  266. }
  267.  
  268. /// <summary>
  269. /// 发生错误时
  270. /// </summary>
  271. /// <param name="sender"></param>
  272. /// <param name="e"></param>
  273. private static void MuxerErrorMessage(object sender, RedisErrorEventArgs e)
  274. {
  275. LogHelper.Error(typeof(RedisHelper), "MuxerErrorMessage=>e.EndPoint=" + e.EndPoint + ",e.Message=" + e.Message, null);
  276. }
  277.  
  278. /// <summary>
  279. /// 重新建立连接
  280. /// </summary>
  281. /// <param name="sender"></param>
  282. /// <param name="e"></param>
  283. private static void MuxerConnectionRestored(object sender, ConnectionFailedEventArgs e)
  284. {
  285. LogHelper.Warn(typeof(RedisHelper), "MuxerConnectionRestored=>e.ConnectionType=" + e.ConnectionType + ",e.EndPoint=" + e.EndPoint + ",e.FailureType=" + e.FailureType, e.Exception);
  286. }
  287.  
  288. /// <summary>
  289. /// 连接失败
  290. /// </summary>
  291. /// <param name="sender"></param>
  292. /// <param name="e"></param>
  293. private static void MuxerConnectionFailed(object sender, ConnectionFailedEventArgs e)
  294. {
  295. LogHelper.Error(typeof(RedisHelper), "MuxerConnectionFailed=>e.ConnectionType=" + e.ConnectionType + ",e.EndPoint=" + e.EndPoint + ",e.FailureType=" + e.FailureType, e.Exception);
  296. }
  297.  
  298. /// <summary>
  299. /// 更改集群
  300. /// </summary>
  301. /// <param name="sender"></param>
  302. /// <param name="e"></param>
  303. private static void MuxerHashSlotMoved(object sender, HashSlotMovedEventArgs e)
  304. {
  305. LogHelper.Warn(typeof(RedisHelper), "MuxerHashSlotMoved=>" + e.NewEndPoint + ", OldEndPoint" + e.OldEndPoint, null);
  306. }
  307.  
  308. /// <summary>
  309. /// redis类库错误
  310. /// </summary>
  311. /// <param name="sender"></param>
  312. /// <param name="e"></param>
  313. private static void MuxerInternalError(object sender, InternalErrorEventArgs e)
  314. {
  315. LogHelper.Error(typeof(RedisHelper), "MuxerInternalError", e.Exception);
  316. }
  317. }
  318. }
  1. //写String 缓存1小时
  2. RedisHelper.SetString(subID, "AXB", new TimeSpan(, , , ));
  3.  
  4. //写String 缓存5分钟
  5. RedisHelper.SetString(mobile + "_car", equipmentType, TimeSpan.FromMinutes());
  6.  
  7. //写String
  8. RedisHelper.SetString(strNum, strCity);
  9.  
  10. //读String
  11. string strTime = RedisHelper.GetString(mobile);

RedisHelper (C#)的更多相关文章

  1. Basic Tutorials of Redis(9) -First Edition RedisHelper

    After learning the basic opreation of Redis,we should take some time to summarize the usage. And I w ...

  2. C# Azure 存储-分布式缓存Redis工具类 RedisHelper

    using System; using System.Collections.Generic; using Newtonsoft.Json; using StackExchange.Redis; na ...

  3. Asp.Net Core 2.0 项目实战(6)Redis配置、封装帮助类RedisHelper及使用实例

    本文目录 1. 摘要 2. Redis配置 3. RedisHelper 4.使用实例 5. 总结 1.  摘要 由于內存存取速度远高于磁盘读取的特性,为了程序效率提高性能,通常会把常用的不常变动的数 ...

  4. [C#] 使用 StackExchange.Redis 封装属于自己的 RedisHelper

    使用 StackExchange.Redis 封装属于自己的 RedisHelper 目录 核心类 ConnectionMultiplexer 字符串(String) 哈希(Hash) 列表(List ...

  5. RedisHelper帮助类

    using Newtonsoft.Json; using RedLockNet.SERedis; using RedLockNet.SERedis.Configuration; using Stack ...

  6. RedisHelper in C#

    自己写了一个RedisHelper,现贴出来,希望各位大神能够指正和优化. using System; using StackExchange.Redis; using System.Configur ...

  7. 使用 StackExchange.Redis 封装属于自己的 RedisHelper

    目录 核心类 ConnectionMultiplexer 字符串(String) 哈希(Hash) 列表(List) 有序集合(sorted set) Key 操作 发布订阅 其他 简介 目前 .NE ...

  8. RedisHelper Redis帮助类

    using StackExchange.Redis; using System; using System.Collections.Generic; using System.IO; using Sy ...

  9. Redis:RedisHelper(5)

    /// <summary> /// Redis 助手 /// </summary> public class RedisHelper { /// <summary> ...

随机推荐

  1. C语言程序设计100例之(3): Cantor表

    例3    Cantor表 题目描述 现代数学的著名证明之一是Georg Cantor证明了有理数是可枚举的.他是用下面这一张表来证明这一命题的: 1/1  1/2  1/3  1/4  …… 2/1 ...

  2. ImportError: unable to find Qt5Core.dll on PATH

    一.实验环境 1.Windows7x32_SP1 2.python3.7.4 3.pyinstaller3.5 二.问题描述 1.一直都是在Windows10x64上使用pyinstaller打包ex ...

  3. IT兄弟连 HTML5教程 HTML5的靠山 RFC、WHATWG是什么WEB的新标准

    RFC是什么 RFC文档也称请求注解文档(Requests for Comments,RFC),这是用于发布Internet标准和Internet其他正式出版物的一种网络文件或工作报告,内容和Inte ...

  4. IT兄弟连 Java语法教程 流程控制语句 分支结构语句5

    5  switch-case条件语句 Java中的第二种分支控制语句时switch语句,switch语句提供了多路支持,因此可以使程序在多个选项中进行选择.尽管一系列嵌套if语句可以执行多路测试,然而 ...

  5. python 操作zookeeper详解

    ZooKeeper 简介 ZooKeeper 是一个分布式的.开放源码的分布式应用程序协调服务,是 Google 的 Chubby 一个开源的实现,是 Hadoop 和 Hbase 的重要组件.它是一 ...

  6. laravel中控制器的创建和使用(五)

    laravel中我们可以使用 artisan 命令来帮助我们创建控制器文件. php artisan make:controller TestController TestController 控制器 ...

  7. C++ delete 和 delete []的区别

    转载自https://blog.csdn.net/cbNotes/article/details/38900799 1.我们通常从教科书上看到这样的说明:delete 释放new分配的单个对象指针指向 ...

  8. 关于matlab2014a中生成dll文件,打包成com组件出现的问题和解决方法

    问题1:matlab2014a破解不完整,容易导致package打包失败 解决方法:1.下载破解文档:链接: http://pan.baidu.com/s/1eRJ4E2I 密码: 44th 2.下载 ...

  9. 面试官,我会写二分查找法!对,没有 bug 的那种!

    前言科普 第一篇二分搜索论文是 1946 年发表,然而第一个没有 bug 的二分查找法却是在 1962 年才出现,中间用了 16 年的时间. 2019 年的你,在面试的过程中能手写出没有 bug 的二 ...

  10. java高并发系列 - 第10天:线程安全和synchronized关键字

    这是并发系列第10篇文章. 什么是线程安全? 当多个线程去访问同一个类(对象或方法)的时候,该类都能表现出正常的行为(与自己预想的结果一致),那我们就可以所这个类是线程安全的. 看一段代码: pack ...