C# Azure 存储-分布式缓存Redis工具类 RedisHelper
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- using StackExchange.Redis;
- namespace WXWeb.Common
- {
- public class RedisHelper
- {
- //连接哪个DB
- private static int DBNum = 15;
- private static Lazy<ConnectionMultiplexer> lazyConnection = new Lazy<ConnectionMultiplexer>(() =>
- {
- var config = new ConfigurationOptions();
- config.EndPoints.Add("ceswebnew.redis.cache.chinacloudapi.cn", 6379);
- config.SyncTimeout = 10000;
- config.AbortOnConnectFail = false;
- config.ResolveDns = false;
- config.Password = "xxxxxxxxxxxxxxxxxxxx";
- config.Ssl = false;
- var connectionMultiplexer = ConnectionMultiplexer.Connect(config);
- connectionMultiplexer.PreserveAsyncOrder = false;
- return connectionMultiplexer;
- });
- public static ConnectionMultiplexer Connection
- {
- get
- {
- return lazyConnection.Value;
- }
- }
- private static IDatabase db = Connection.GetDatabase(DBNum);
- /// <summary>
- /// 获取系统的redis key前缀
- /// </summary>
- /// <param name="resourceid">资源Id</param>
- /// <returns></returns>
- public static string GetMyKey(string resourceid = "")
- {
- string Key = "report_";
- if (!string.IsNullOrWhiteSpace(resourceid))
- {
- Key = string.Format("report_res_{0}", resourceid);
- }
- return Key;
- }
- #region String 可以设置过期时间
- /// <summary>
- /// 保存单个key value
- /// </summary>
- /// <param name="key">Redis Key</param>
- /// <param name="value">保存的值</param>
- /// <param name="expiry">过期时间</param>
- /// <returns></returns>
- public static bool SetStringKey(string key, string value, TimeSpan? expiry = default(TimeSpan?))
- {
- return db.StringSet(key, value, expiry);
- }
- /// <summary>
- /// 保存多个key value
- /// </summary>
- /// <param name="arr">key</param>
- /// <returns></returns>
- public static bool SetStringKey(KeyValuePair<RedisKey, RedisValue>[] arr)
- {
- return db.StringSet(arr);
- }
- /// <summary>
- /// 保存一个对象
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key"></param>
- /// <param name="obj"></param>
- /// <returns></returns>
- public static bool SetStringKey<T>(string key, T obj, TimeSpan? expiry = default(TimeSpan?))
- {
- string json = JsonConvert.SerializeObject(obj);
- return db.StringSet(key, json, expiry);
- }
- /// <summary>
- /// 获取单个key的值
- /// </summary>
- /// <param name="key">Redis Key</param>
- /// <returns></returns>
- public static RedisValue GetStringKey(string key)
- {
- return db.StringGet(key);
- }
- /// <summary>
- /// 获取多个Key
- /// </summary>
- /// <param name="listKey">Redis Key集合</param>
- /// <returns></returns>
- public static RedisValue[] GetStringKey(List<RedisKey> listKey)
- {
- return db.StringGet(listKey.ToArray());
- }
- /// <summary>
- /// 获取一个key的对象
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key"></param>
- /// <returns></returns>
- public static T GetStringKey<T>(string key)
- {
- return JsonConvert.DeserializeObject<T>(db.StringGet(key));
- }
- #endregion
- #region Hash
- /// <summary>
- /// 保存一个集合
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key">Redis Key</param>
- /// <param name="list">数据集合</param>
- /// <param name="getModelId"></param>
- public static void HashSet<T>(string key, List<T> list, Func<T, string> getModelId)
- {
- List<HashEntry> listHashEntry = new List<HashEntry>();
- foreach (var item in list)
- {
- string json = JsonConvert.SerializeObject(item);
- listHashEntry.Add(new HashEntry(getModelId(item), json));
- }
- db.HashSet(key, listHashEntry.ToArray());
- }
- /// <summary>
- /// 获取Hash中的单个key的值
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key">Redis Key</param>
- /// <param name="hasFildValue">RedisValue</param>
- /// <returns></returns>
- public static T GetHashKey<T>(string key, string hasFildValue)
- {
- if (!string.IsNullOrWhiteSpace(key) && !string.IsNullOrWhiteSpace(hasFildValue))
- {
- RedisValue value = db.HashGet(key, hasFildValue);
- if (!value.IsNullOrEmpty)
- {
- return JsonConvert.DeserializeObject<T>(value);
- }
- }
- return default(T);
- }
- /// <summary>
- /// 获取hash中的多个key的值
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key">Redis Key</param>
- /// <param name="listhashFields">RedisValue value</param>
- /// <returns></returns>
- public static List<T> GetHashKey<T>(string key, List<RedisValue> listhashFields)
- {
- List<T> result = new List<T>();
- if (!string.IsNullOrWhiteSpace(key) && listhashFields.Count > 0)
- {
- RedisValue[] value = db.HashGet(key, listhashFields.ToArray());
- foreach (var item in value)
- {
- if (!item.IsNullOrEmpty)
- {
- result.Add(JsonConvert.DeserializeObject<T>(item));
- }
- }
- }
- return result;
- }
- /// <summary>
- /// 获取hashkey所有Redis key
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key"></param>
- /// <returns></returns>
- public static List<T> GetHashAll<T>(string key)
- {
- List<T> result = new List<T>();
- RedisValue[] arr = db.HashKeys(key);
- foreach (var item in arr)
- {
- if (!item.IsNullOrEmpty)
- {
- result.Add(JsonConvert.DeserializeObject<T>(item));
- }
- }
- return result;
- }
- /// <summary>
- /// 获取hashkey所有的值
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key"></param>
- /// <returns></returns>
- public static List<T> HashGetAll<T>(string key)
- {
- List<T> result = new List<T>();
- HashEntry[] arr = db.HashGetAll(key);
- foreach (var item in arr)
- {
- if (!item.Value.IsNullOrEmpty)
- {
- result.Add(JsonConvert.DeserializeObject<T>(item.Value));
- }
- }
- return result;
- }
- /// <summary>
- /// 删除hasekey
- /// </summary>
- /// <param name="key"></param>
- /// <param name="hashField"></param>
- /// <returns></returns>
- public static bool DeleteHase(RedisKey key, RedisValue hashField)
- {
- return db.HashDelete(key, hashField);
- }
- #endregion
- #region key
- /// <summary>
- /// 删除单个key
- /// </summary>
- /// <param name="key">redis key</param>
- /// <returns>是否删除成功</returns>
- public static bool KeyDelete(string key)
- {
- return db.KeyDelete(key);
- }
- /// <summary>
- /// 删除多个key
- /// </summary>
- /// <param name="keys">rediskey</param>
- /// <returns>成功删除的个数</returns>
- public static long keyDelete(RedisKey[] keys)
- {
- return db.KeyDelete(keys);
- }
- /// <summary>
- /// 判断key是否存储
- /// </summary>
- /// <param name="key">redis key</param>
- /// <returns></returns>
- public static bool KeyExists(string key)
- {
- return db.KeyExists(key);
- }
- /// <summary>
- /// 重新命名key
- /// </summary>
- /// <param name="key">就的redis key</param>
- /// <param name="newKey">新的redis key</param>
- /// <returns></returns>
- public static bool KeyRename(string key, string newKey)
- {
- return db.KeyRename(key, newKey);
- }
- #endregion
- /// <summary>
- /// 追加值
- /// </summary>
- /// <param name="key"></param>
- /// <param name="value"></param>
- public static void StringAppend(string key, string value)
- {
- ////追加值,返回追加后长度
- long appendlong = db.StringAppend(key, value);
- }
- }
- }
C# Azure 存储-分布式缓存Redis工具类 RedisHelper的更多相关文章
- C# Azure 存储-分布式缓存Redis的新建&配置&查看
1. 介绍 Redis 是一款开源的,基于 BSD 许可的,高级键值 (key-value) 缓存 (cache) 和存储 (store) 系统.由于 Redis 的键包括 string,hash,l ...
- C# Azure 存储-分布式缓存Redis在session中的配置
1. 开始 对于分布式的缓存,平常的session的处理是一个用户对应一台分布式的机器,如果这台机器中途挂机或者不能处理这个用户session的情况发生,则此用户的session会丢失,会发生不可预知 ...
- 第十章 企业项目开发--分布式缓存Redis(2)
注意:本章代码是在上一章的基础上进行添加修改,上一章链接<第九章 企业项目开发--分布式缓存Redis(1)> 上一章说了ShardedJedisPool的创建过程,以及redis五种数据 ...
- 企业项目开发--分布式缓存Redis
第九章 企业项目开发--分布式缓存Redis(1) 注意:本章代码将会建立在上一章的代码基础上,上一章链接<第八章 企业项目开发--分布式缓存memcached> 1.为什么用Redis ...
- Redis 工具类 java 实现的redis 工具类
最近了解了一下非关系型数据库 redis 会使用简单的命令 在自己本地电脑 使用时必须先启动服务器端 在启动客户端 redis 简介 Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内 ...
- spring boot 使用redis 及redis工具类
1-添加maven依赖 2-添加redis配置 3-工具类 1-添加maven依赖 实际上是封装了jedis <!-- redis 依赖--> <dependency> < ...
- 分布式缓存Redis应用场景解析
Redis的应用场景非常广泛.虽然Redis是一个key-value的内存数据库,但在实际场景中,Redis经常被作为缓存来使用,如面对数据高并发的读写.海量数据的读写等. 举个例子,A网站首页一天有 ...
- springboot2.2.2企业级项目整合redis与redis 工具类大全
1.springboot2.2.2整合redis教程很多,为此编写了比较完整的redis工具类,符合企业级开发使用的工具类 2.springboot与redis maven相关的依赖 <depe ...
- 一个技术汪的开源梦 —— 公共组件缓存之分布式缓存 Redis 实现篇
Redis 安装 & 配置 本测试环境将在 CentOS 7 x64 上安装最新版本的 Redis. 1. 运行以下命令安装 Redis $ wget http://download.redi ...
随机推荐
- sqlmap 帮助信息
Usage: sqlmap.py [options] 选项: -h, --help 显示基本的帮助信息并退出 -hh 显示高级的帮助信息并退出 --version 显示程序版本号并退出 -v VERB ...
- ctf汇总
IDF实验室:牛刀小试 IDF实验室:倒行逆施 linux shell 常用指令 汇编笔记 堆栈溢出
- Hololens 手势事件执行顺序
InteractionManager_SourcePressed (Filename: C:\buildslave\unity\build\artifacts/generated/Metro/runt ...
- [VijosP1639]机密文件 题解
题目大意: m个人抄n份资料,资料有编号,每人抄连续的几份资料,每份资料页数不一定相等,每个人抄的速度相同,求使得总时间最少的方案(总时间相同,越前面的人抄的越少) 思路: 假设每人一天抄一页,二分天 ...
- penpyxl basic function demo code
Openpyxl basic function demo code demo code: #!/usr/bin/env python # -*- coding: utf-8 -*- "&qu ...
- UDP和TCP的区别
UDP(User Datagram Protocol 用户数据报协议) TCP(Transmission Control Protocol 传输控制协议) UDP是一种非面向连接的传输协议,它的实现是 ...
- 在VS2012下静态链接MFC的问题
1>------ 已启动生成: 项目: MFCApplication1, 配置: Debug Win32 ------1>uafxcwd.lib(afxctrlcontainer2.obj ...
- 使用maven搭建ssh框架
首先搭建sturts2框架,配置pom文件: <properties> <!-- 文件拷贝时的编码 --> <project.build.sourceEncoding&g ...
- python RecursionError: maximum recursion depth exceeded in comparison错误
处理快速排序,递归深度可能非常大,而系统默认的深度可能没有这么大 需要设置最大递归深度 import sys sys.setrecursionlimit(100000) # 这个值的大小取决你自己,最 ...
- python lxml install
之前记得安装libxslt和libxml yum install libxml* -yyum install libxslt* -y wget http://lxml.de/files/lxml-3. ...