1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. using StackExchange.Redis;
  5.  
  6. namespace WXWeb.Common
  7. {
  8. public class RedisHelper
  9. {
  10.  
  11. //连接哪个DB
  12. private static int DBNum = 15;
  13.  
  14. private static Lazy<ConnectionMultiplexer> lazyConnection = new Lazy<ConnectionMultiplexer>(() =>
  15. {
  16. var config = new ConfigurationOptions();
  17. config.EndPoints.Add("ceswebnew.redis.cache.chinacloudapi.cn", 6379);
  18.  
  19. config.SyncTimeout = 10000;
  20. config.AbortOnConnectFail = false;
  21. config.ResolveDns = false;
  22. config.Password = "xxxxxxxxxxxxxxxxxxxx";
  23.  
  24. config.Ssl = false;
  25.  
  26. var connectionMultiplexer = ConnectionMultiplexer.Connect(config);
  27. connectionMultiplexer.PreserveAsyncOrder = false;
  28.  
  29. return connectionMultiplexer;
  30. });
  31.  
  32. public static ConnectionMultiplexer Connection
  33. {
  34. get
  35. {
  36. return lazyConnection.Value;
  37. }
  38. }
  39.  
  40. private static IDatabase db = Connection.GetDatabase(DBNum);
  41.  
  42. /// <summary>
  43. /// 获取系统的redis key前缀
  44. /// </summary>
  45. /// <param name="resourceid">资源Id</param>
  46. /// <returns></returns>
  47. public static string GetMyKey(string resourceid = "")
  48. {
  49. string Key = "report_";
  50. if (!string.IsNullOrWhiteSpace(resourceid))
  51. {
  52. Key = string.Format("report_res_{0}", resourceid);
  53. }
  54. return Key;
  55. }
  56.  
  57. #region String 可以设置过期时间
  58.  
  59. /// <summary>
  60. /// 保存单个key value
  61. /// </summary>
  62. /// <param name="key">Redis Key</param>
  63. /// <param name="value">保存的值</param>
  64. /// <param name="expiry">过期时间</param>
  65. /// <returns></returns>
  66. public static bool SetStringKey(string key, string value, TimeSpan? expiry = default(TimeSpan?))
  67. {
  68. return db.StringSet(key, value, expiry);
  69. }
  70.  
  71. /// <summary>
  72. /// 保存多个key value
  73. /// </summary>
  74. /// <param name="arr">key</param>
  75. /// <returns></returns>
  76. public static bool SetStringKey(KeyValuePair<RedisKey, RedisValue>[] arr)
  77. {
  78. return db.StringSet(arr);
  79. }
  80.  
  81. /// <summary>
  82. /// 保存一个对象
  83. /// </summary>
  84. /// <typeparam name="T"></typeparam>
  85. /// <param name="key"></param>
  86. /// <param name="obj"></param>
  87. /// <returns></returns>
  88. public static bool SetStringKey<T>(string key, T obj, TimeSpan? expiry = default(TimeSpan?))
  89. {
  90. string json = JsonConvert.SerializeObject(obj);
  91. return db.StringSet(key, json, expiry);
  92. }
  93.  
  94. /// <summary>
  95. /// 获取单个key的值
  96. /// </summary>
  97. /// <param name="key">Redis Key</param>
  98. /// <returns></returns>
  99.  
  100. public static RedisValue GetStringKey(string key)
  101. {
  102. return db.StringGet(key);
  103. }
  104.  
  105. /// <summary>
  106. /// 获取多个Key
  107. /// </summary>
  108. /// <param name="listKey">Redis Key集合</param>
  109. /// <returns></returns>
  110. public static RedisValue[] GetStringKey(List<RedisKey> listKey)
  111. {
  112. return db.StringGet(listKey.ToArray());
  113. }
  114.  
  115. /// <summary>
  116. /// 获取一个key的对象
  117. /// </summary>
  118. /// <typeparam name="T"></typeparam>
  119. /// <param name="key"></param>
  120. /// <returns></returns>
  121. public static T GetStringKey<T>(string key)
  122. {
  123. return JsonConvert.DeserializeObject<T>(db.StringGet(key));
  124. }
  125.  
  126. #endregion
  127.  
  128. #region Hash
  129.  
  130. /// <summary>
  131. /// 保存一个集合
  132. /// </summary>
  133. /// <typeparam name="T"></typeparam>
  134. /// <param name="key">Redis Key</param>
  135. /// <param name="list">数据集合</param>
  136. /// <param name="getModelId"></param>
  137. public static void HashSet<T>(string key, List<T> list, Func<T, string> getModelId)
  138. {
  139. List<HashEntry> listHashEntry = new List<HashEntry>();
  140. foreach (var item in list)
  141. {
  142. string json = JsonConvert.SerializeObject(item);
  143. listHashEntry.Add(new HashEntry(getModelId(item), json));
  144. }
  145. db.HashSet(key, listHashEntry.ToArray());
  146. }
  147.  
  148. /// <summary>
  149. /// 获取Hash中的单个key的值
  150. /// </summary>
  151. /// <typeparam name="T"></typeparam>
  152. /// <param name="key">Redis Key</param>
  153. /// <param name="hasFildValue">RedisValue</param>
  154. /// <returns></returns>
  155. public static T GetHashKey<T>(string key, string hasFildValue)
  156. {
  157. if (!string.IsNullOrWhiteSpace(key) && !string.IsNullOrWhiteSpace(hasFildValue))
  158. {
  159. RedisValue value = db.HashGet(key, hasFildValue);
  160. if (!value.IsNullOrEmpty)
  161. {
  162. return JsonConvert.DeserializeObject<T>(value);
  163. }
  164. }
  165. return default(T);
  166. }
  167.  
  168. /// <summary>
  169. /// 获取hash中的多个key的值
  170. /// </summary>
  171. /// <typeparam name="T"></typeparam>
  172. /// <param name="key">Redis Key</param>
  173. /// <param name="listhashFields">RedisValue value</param>
  174. /// <returns></returns>
  175. public static List<T> GetHashKey<T>(string key, List<RedisValue> listhashFields)
  176. {
  177. List<T> result = new List<T>();
  178. if (!string.IsNullOrWhiteSpace(key) && listhashFields.Count > 0)
  179. {
  180. RedisValue[] value = db.HashGet(key, listhashFields.ToArray());
  181. foreach (var item in value)
  182. {
  183. if (!item.IsNullOrEmpty)
  184. {
  185. result.Add(JsonConvert.DeserializeObject<T>(item));
  186. }
  187. }
  188. }
  189. return result;
  190. }
  191.  
  192. /// <summary>
  193. /// 获取hashkey所有Redis key
  194. /// </summary>
  195. /// <typeparam name="T"></typeparam>
  196. /// <param name="key"></param>
  197. /// <returns></returns>
  198. public static List<T> GetHashAll<T>(string key)
  199. {
  200. List<T> result = new List<T>();
  201. RedisValue[] arr = db.HashKeys(key);
  202. foreach (var item in arr)
  203. {
  204. if (!item.IsNullOrEmpty)
  205. {
  206. result.Add(JsonConvert.DeserializeObject<T>(item));
  207. }
  208. }
  209. return result;
  210. }
  211.  
  212. /// <summary>
  213. /// 获取hashkey所有的值
  214. /// </summary>
  215. /// <typeparam name="T"></typeparam>
  216. /// <param name="key"></param>
  217. /// <returns></returns>
  218. public static List<T> HashGetAll<T>(string key)
  219. {
  220. List<T> result = new List<T>();
  221. HashEntry[] arr = db.HashGetAll(key);
  222. foreach (var item in arr)
  223. {
  224. if (!item.Value.IsNullOrEmpty)
  225. {
  226. result.Add(JsonConvert.DeserializeObject<T>(item.Value));
  227. }
  228. }
  229. return result;
  230. }
  231.  
  232. /// <summary>
  233. /// 删除hasekey
  234. /// </summary>
  235. /// <param name="key"></param>
  236. /// <param name="hashField"></param>
  237. /// <returns></returns>
  238. public static bool DeleteHase(RedisKey key, RedisValue hashField)
  239. {
  240. return db.HashDelete(key, hashField);
  241. }
  242.  
  243. #endregion
  244.  
  245. #region key
  246.  
  247. /// <summary>
  248. /// 删除单个key
  249. /// </summary>
  250. /// <param name="key">redis key</param>
  251. /// <returns>是否删除成功</returns>
  252. public static bool KeyDelete(string key)
  253. {
  254. return db.KeyDelete(key);
  255. }
  256.  
  257. /// <summary>
  258. /// 删除多个key
  259. /// </summary>
  260. /// <param name="keys">rediskey</param>
  261. /// <returns>成功删除的个数</returns>
  262. public static long keyDelete(RedisKey[] keys)
  263. {
  264. return db.KeyDelete(keys);
  265. }
  266.  
  267. /// <summary>
  268. /// 判断key是否存储
  269. /// </summary>
  270. /// <param name="key">redis key</param>
  271. /// <returns></returns>
  272. public static bool KeyExists(string key)
  273. {
  274. return db.KeyExists(key);
  275. }
  276.  
  277. /// <summary>
  278. /// 重新命名key
  279. /// </summary>
  280. /// <param name="key">就的redis key</param>
  281. /// <param name="newKey">新的redis key</param>
  282. /// <returns></returns>
  283. public static bool KeyRename(string key, string newKey)
  284. {
  285. return db.KeyRename(key, newKey);
  286. }
  287. #endregion
  288.  
  289. /// <summary>
  290. /// 追加值
  291. /// </summary>
  292. /// <param name="key"></param>
  293. /// <param name="value"></param>
  294. public static void StringAppend(string key, string value)
  295. {
  296. ////追加值,返回追加后长度
  297. long appendlong = db.StringAppend(key, value);
  298. }
  299. }
  300. }

C# Azure 存储-分布式缓存Redis工具类 RedisHelper的更多相关文章

  1. C# Azure 存储-分布式缓存Redis的新建&配置&查看

    1. 介绍 Redis 是一款开源的,基于 BSD 许可的,高级键值 (key-value) 缓存 (cache) 和存储 (store) 系统.由于 Redis 的键包括 string,hash,l ...

  2. C# Azure 存储-分布式缓存Redis在session中的配置

    1. 开始 对于分布式的缓存,平常的session的处理是一个用户对应一台分布式的机器,如果这台机器中途挂机或者不能处理这个用户session的情况发生,则此用户的session会丢失,会发生不可预知 ...

  3. 第十章 企业项目开发--分布式缓存Redis(2)

    注意:本章代码是在上一章的基础上进行添加修改,上一章链接<第九章 企业项目开发--分布式缓存Redis(1)> 上一章说了ShardedJedisPool的创建过程,以及redis五种数据 ...

  4. 企业项目开发--分布式缓存Redis

    第九章 企业项目开发--分布式缓存Redis(1) 注意:本章代码将会建立在上一章的代码基础上,上一章链接<第八章 企业项目开发--分布式缓存memcached> 1.为什么用Redis ...

  5. Redis 工具类 java 实现的redis 工具类

    最近了解了一下非关系型数据库 redis 会使用简单的命令 在自己本地电脑 使用时必须先启动服务器端 在启动客户端 redis 简介 Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内 ...

  6. spring boot 使用redis 及redis工具类

    1-添加maven依赖 2-添加redis配置 3-工具类 1-添加maven依赖 实际上是封装了jedis <!-- redis 依赖--> <dependency> < ...

  7. 分布式缓存Redis应用场景解析

    Redis的应用场景非常广泛.虽然Redis是一个key-value的内存数据库,但在实际场景中,Redis经常被作为缓存来使用,如面对数据高并发的读写.海量数据的读写等. 举个例子,A网站首页一天有 ...

  8. springboot2.2.2企业级项目整合redis与redis 工具类大全

    1.springboot2.2.2整合redis教程很多,为此编写了比较完整的redis工具类,符合企业级开发使用的工具类 2.springboot与redis maven相关的依赖 <depe ...

  9. 一个技术汪的开源梦 —— 公共组件缓存之分布式缓存 Redis 实现篇

    Redis 安装 & 配置 本测试环境将在 CentOS 7 x64 上安装最新版本的 Redis. 1. 运行以下命令安装 Redis $ wget http://download.redi ...

随机推荐

  1. sqlmap 帮助信息

    Usage: sqlmap.py [options] 选项: -h, --help 显示基本的帮助信息并退出 -hh 显示高级的帮助信息并退出 --version 显示程序版本号并退出 -v VERB ...

  2. ctf汇总

    IDF实验室:牛刀小试 IDF实验室:倒行逆施 linux shell 常用指令 汇编笔记 堆栈溢出

  3. Hololens 手势事件执行顺序

    InteractionManager_SourcePressed (Filename: C:\buildslave\unity\build\artifacts/generated/Metro/runt ...

  4. [VijosP1639]机密文件 题解

    题目大意: m个人抄n份资料,资料有编号,每人抄连续的几份资料,每份资料页数不一定相等,每个人抄的速度相同,求使得总时间最少的方案(总时间相同,越前面的人抄的越少) 思路: 假设每人一天抄一页,二分天 ...

  5. penpyxl basic function demo code

    Openpyxl basic function demo code demo code: #!/usr/bin/env python # -*- coding: utf-8 -*- "&qu ...

  6. UDP和TCP的区别

    UDP(User Datagram Protocol 用户数据报协议) TCP(Transmission Control Protocol 传输控制协议) UDP是一种非面向连接的传输协议,它的实现是 ...

  7. 在VS2012下静态链接MFC的问题

    1>------ 已启动生成: 项目: MFCApplication1, 配置: Debug Win32 ------1>uafxcwd.lib(afxctrlcontainer2.obj ...

  8. 使用maven搭建ssh框架

    首先搭建sturts2框架,配置pom文件: <properties> <!-- 文件拷贝时的编码 --> <project.build.sourceEncoding&g ...

  9. python RecursionError: maximum recursion depth exceeded in comparison错误

    处理快速排序,递归深度可能非常大,而系统默认的深度可能没有这么大 需要设置最大递归深度 import sys sys.setrecursionlimit(100000) # 这个值的大小取决你自己,最 ...

  10. python lxml install

    之前记得安装libxslt和libxml yum install libxml* -yyum install libxslt* -y wget http://lxml.de/files/lxml-3. ...