RedisHelper (C#)
- <add key="RedisServers" value="172.20.2.90:9379,password=Aa+123456789" />
- using StackExchange.Redis;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace APP.Common
- {
- /// <summary>
- /// StackExchangeRedis帮助类
- /// </summary>
- public sealed class RedisHelper
- {
- /// <summary>
- /// Redis服务器地址
- /// </summary>
- private static readonly string ConnectionString = System.Configuration.ConfigurationManager.AppSettings["RedisServers"];
- /// <summary>
- /// 静态变量锁
- /// </summary>
- private static object _locker = new Object();
- /// <summary>
- /// 静态实例
- /// </summary>
- private static ConnectionMultiplexer _instance = null;
- /// <summary>
- /// 使用一个静态属性来返回已连接的实例,如下列中所示。这样,一旦 ConnectionMultiplexer 断开连接,便可以初始化新的连接实例。
- /// </summary>
- private static ConnectionMultiplexer Instance
- {
- get
- {
- try
- {
- if (_instance == null)
- {
- lock (_locker)
- {
- if (_instance == null || !_instance.IsConnected)
- {
- _instance = ConnectionMultiplexer.Connect(ConnectionString);
- //注册如下事件
- _instance.ConnectionFailed += MuxerConnectionFailed;
- _instance.ConnectionRestored += MuxerConnectionRestored;
- _instance.ErrorMessage += MuxerErrorMessage;
- _instance.ConfigurationChanged += MuxerConfigurationChanged;
- _instance.HashSlotMoved += MuxerHashSlotMoved;
- _instance.InternalError += MuxerInternalError;
- }
- }
- }
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), string.Format("redis初始化异常,连接字符串={0}", ConnectionString), ex);
- }
- return _instance;
- }
- }
- /// <summary>
- /// 获取redis数据库对象
- /// </summary>
- /// <returns></returns>
- private static IDatabase GetDatabase()
- {
- return Instance.GetDatabase();
- }
- /// <summary>
- /// 检查Key是否存在
- /// </summary>
- /// <param name="key"></param>
- /// <returns></returns>
- public static bool Exists(string key)
- {
- if (string.IsNullOrWhiteSpace(key))
- {
- return false;
- }
- try
- {
- return GetDatabase().KeyExists(key);
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), string.Format("检查Key是否存在异常,缓存key={0}", key), ex);
- }
- return false;
- }
- /// <summary>
- /// 设置String类型的缓存对象(如果value是null或者空字符串则设置失败)
- /// </summary>
- /// <param name="key"></param>
- /// <param name="value"></param>
- /// <param name="ts">过期时间</param>
- public static bool SetString(string key, string value, TimeSpan? ts = null)
- {
- if (string.IsNullOrWhiteSpace(value))
- {
- return false;
- }
- try
- {
- return GetDatabase().StringSet(key, value, ts);
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), string.Format("设置string类型缓存异常,缓存key={0},缓存值={1}", key, value), ex);
- }
- return false;
- }
- /// <summary>
- /// 根据key获取String类型的缓存对象
- /// </summary>
- /// <param name="key"></param>
- /// <returns></returns>
- public static string GetString(string key)
- {
- try
- {
- return GetDatabase().StringGet(key);
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), string.Format("获取string类型缓存异常,缓存key={0}", key), ex);
- }
- return null;
- }
- /// <summary>
- /// 删除缓存
- /// </summary>
- /// <param name="key">key</param>
- /// <returns></returns>
- public static bool KeyDelete(string key)
- {
- try
- {
- return GetDatabase().KeyDelete(key);
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), "删除缓存异常,缓存key={0}" + key, ex);
- return false;
- }
- }
- /// <summary>
- /// 设置Hash类型缓存对象(如果value没有公共属性则不设置缓存)
- /// 会使用反射将object对象所有公共属性作为Hash列存储
- /// </summary>
- /// <param name="key"></param>
- /// <param name="value"></param>
- public static void SetHash(string key, object value)
- {
- if (null == value)
- {
- return;
- }
- try
- {
- List<HashEntry> list = new List<HashEntry>();
- Type type = value.GetType();
- var propertyArray = type.GetProperties();
- foreach (var property in propertyArray)
- {
- string propertyName = property.Name;
- string propertyValue = property.GetValue(value).ToString();
- list.Add(new HashEntry(propertyName, propertyValue));
- }
- if (list.Count < )
- {
- return;
- }
- IDatabase db = GetDatabase();
- db.HashSet(key, list.ToArray());
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), string.Format("设置Hash类型缓存异常,缓存key={0},缓存值={1}", key, Utils.SerializeObject(value)), ex);
- }
- }
- /// <summary>
- /// 设置Hash类型缓存对象(用于存储对象)
- /// </summary>
- /// <param name="key">Key</param>
- /// <param name="value">字典,key是列名 value是列的值</param>
- public static void SetHash(string key, Dictionary<string, string> value)
- {
- if (null == value || value.Count < )
- {
- return;
- }
- try
- {
- HashEntry[] array = (from item in value select new HashEntry(item.Key, item.Value)).ToArray();
- IDatabase db = GetDatabase();
- db.HashSet(key, array);
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), string.Format("设置Hash类型缓存异常,缓存key={0},缓存对象值={1}", key, string.Join(",", value)), ex);
- }
- }
- /// <summary>
- /// 根据key和列数组从缓存中拿取数据(如果fieldList为空或者个数小于0返回null)
- /// </summary>
- /// <param name="key">缓存Key</param>
- /// <param name="fieldList">列数组</param>
- /// <returns>根据列数组构造一个字典,字典中的列与入参列数组相同,字典中的值是每一列的值</returns>
- public static Dictionary<string, string> GetHash(string key, List<string> fieldList)
- {
- if (null == fieldList || fieldList.Count < )
- {
- return null;
- }
- try
- {
- Dictionary<string, string> dic = new Dictionary<string, string>();
- RedisValue[] array = (from item in fieldList select (RedisValue)item).ToArray();
- IDatabase db = GetDatabase();
- RedisValue[] redisValueArray = db.HashGet(key, array);
- for (int i = ; i < redisValueArray.Length; i++)
- {
- string field = fieldList[i];
- string value = redisValueArray[i];
- dic.Add(field, value);
- }
- return dic;
- }
- catch (Exception ex)
- {
- LogHelper.Error(typeof(RedisHelper), string.Format("获取Hash类型缓存异常,缓存key={0},列数组={1}", key, string.Join(",", fieldList)), ex);
- }
- return null;
- }
- /// <summary>
- /// 使用Redis incr 记录某个Key的调用次数
- /// </summary>
- /// <param name="key"></param>
- public static long SaveInvokeCount(string key)
- {
- try
- {
- return GetDatabase().StringIncrement(key);
- }
- catch { return -; }
- }
- /// <summary>
- /// 配置更改时
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private static void MuxerConfigurationChanged(object sender, EndPointEventArgs e)
- {
- LogHelper.Warn(typeof(RedisHelper), "MuxerConfigurationChanged=>e.EndPoint=" + e.EndPoint, null);
- }
- /// <summary>
- /// 发生错误时
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private static void MuxerErrorMessage(object sender, RedisErrorEventArgs e)
- {
- LogHelper.Error(typeof(RedisHelper), "MuxerErrorMessage=>e.EndPoint=" + e.EndPoint + ",e.Message=" + e.Message, null);
- }
- /// <summary>
- /// 重新建立连接
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private static void MuxerConnectionRestored(object sender, ConnectionFailedEventArgs e)
- {
- LogHelper.Warn(typeof(RedisHelper), "MuxerConnectionRestored=>e.ConnectionType=" + e.ConnectionType + ",e.EndPoint=" + e.EndPoint + ",e.FailureType=" + e.FailureType, e.Exception);
- }
- /// <summary>
- /// 连接失败
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private static void MuxerConnectionFailed(object sender, ConnectionFailedEventArgs e)
- {
- LogHelper.Error(typeof(RedisHelper), "MuxerConnectionFailed=>e.ConnectionType=" + e.ConnectionType + ",e.EndPoint=" + e.EndPoint + ",e.FailureType=" + e.FailureType, e.Exception);
- }
- /// <summary>
- /// 更改集群
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private static void MuxerHashSlotMoved(object sender, HashSlotMovedEventArgs e)
- {
- LogHelper.Warn(typeof(RedisHelper), "MuxerHashSlotMoved=>" + e.NewEndPoint + ", OldEndPoint" + e.OldEndPoint, null);
- }
- /// <summary>
- /// redis类库错误
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private static void MuxerInternalError(object sender, InternalErrorEventArgs e)
- {
- LogHelper.Error(typeof(RedisHelper), "MuxerInternalError", e.Exception);
- }
- }
- }
- //写String 缓存1小时
- RedisHelper.SetString(subID, "AXB", new TimeSpan(, , , ));
- //写String 缓存5分钟
- RedisHelper.SetString(mobile + "_car", equipmentType, TimeSpan.FromMinutes());
- //写String
- RedisHelper.SetString(strNum, strCity);
- //读String
- string strTime = RedisHelper.GetString(mobile);
RedisHelper (C#)的更多相关文章
- 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 ...
- C# Azure 存储-分布式缓存Redis工具类 RedisHelper
using System; using System.Collections.Generic; using Newtonsoft.Json; using StackExchange.Redis; na ...
- Asp.Net Core 2.0 项目实战(6)Redis配置、封装帮助类RedisHelper及使用实例
本文目录 1. 摘要 2. Redis配置 3. RedisHelper 4.使用实例 5. 总结 1. 摘要 由于內存存取速度远高于磁盘读取的特性,为了程序效率提高性能,通常会把常用的不常变动的数 ...
- [C#] 使用 StackExchange.Redis 封装属于自己的 RedisHelper
使用 StackExchange.Redis 封装属于自己的 RedisHelper 目录 核心类 ConnectionMultiplexer 字符串(String) 哈希(Hash) 列表(List ...
- RedisHelper帮助类
using Newtonsoft.Json; using RedLockNet.SERedis; using RedLockNet.SERedis.Configuration; using Stack ...
- RedisHelper in C#
自己写了一个RedisHelper,现贴出来,希望各位大神能够指正和优化. using System; using StackExchange.Redis; using System.Configur ...
- 使用 StackExchange.Redis 封装属于自己的 RedisHelper
目录 核心类 ConnectionMultiplexer 字符串(String) 哈希(Hash) 列表(List) 有序集合(sorted set) Key 操作 发布订阅 其他 简介 目前 .NE ...
- RedisHelper Redis帮助类
using StackExchange.Redis; using System; using System.Collections.Generic; using System.IO; using Sy ...
- Redis:RedisHelper(5)
/// <summary> /// Redis 助手 /// </summary> public class RedisHelper { /// <summary> ...
随机推荐
- C语言程序设计100例之(3): Cantor表
例3 Cantor表 题目描述 现代数学的著名证明之一是Georg Cantor证明了有理数是可枚举的.他是用下面这一张表来证明这一命题的: 1/1 1/2 1/3 1/4 …… 2/1 ...
- ImportError: unable to find Qt5Core.dll on PATH
一.实验环境 1.Windows7x32_SP1 2.python3.7.4 3.pyinstaller3.5 二.问题描述 1.一直都是在Windows10x64上使用pyinstaller打包ex ...
- IT兄弟连 HTML5教程 HTML5的靠山 RFC、WHATWG是什么WEB的新标准
RFC是什么 RFC文档也称请求注解文档(Requests for Comments,RFC),这是用于发布Internet标准和Internet其他正式出版物的一种网络文件或工作报告,内容和Inte ...
- IT兄弟连 Java语法教程 流程控制语句 分支结构语句5
5 switch-case条件语句 Java中的第二种分支控制语句时switch语句,switch语句提供了多路支持,因此可以使程序在多个选项中进行选择.尽管一系列嵌套if语句可以执行多路测试,然而 ...
- python 操作zookeeper详解
ZooKeeper 简介 ZooKeeper 是一个分布式的.开放源码的分布式应用程序协调服务,是 Google 的 Chubby 一个开源的实现,是 Hadoop 和 Hbase 的重要组件.它是一 ...
- laravel中控制器的创建和使用(五)
laravel中我们可以使用 artisan 命令来帮助我们创建控制器文件. php artisan make:controller TestController TestController 控制器 ...
- C++ delete 和 delete []的区别
转载自https://blog.csdn.net/cbNotes/article/details/38900799 1.我们通常从教科书上看到这样的说明:delete 释放new分配的单个对象指针指向 ...
- 关于matlab2014a中生成dll文件,打包成com组件出现的问题和解决方法
问题1:matlab2014a破解不完整,容易导致package打包失败 解决方法:1.下载破解文档:链接: http://pan.baidu.com/s/1eRJ4E2I 密码: 44th 2.下载 ...
- 面试官,我会写二分查找法!对,没有 bug 的那种!
前言科普 第一篇二分搜索论文是 1946 年发表,然而第一个没有 bug 的二分查找法却是在 1962 年才出现,中间用了 16 年的时间. 2019 年的你,在面试的过程中能手写出没有 bug 的二 ...
- java高并发系列 - 第10天:线程安全和synchronized关键字
这是并发系列第10篇文章. 什么是线程安全? 当多个线程去访问同一个类(对象或方法)的时候,该类都能表现出正常的行为(与自己预想的结果一致),那我们就可以所这个类是线程安全的. 看一段代码: pack ...