RedisHelper in C#
自己写了一个RedisHelper,现贴出来,希望各位大神能够指正和优化。
using System;
using StackExchange.Redis;
using System.Configuration; namespace Common.Redis
{
public static partial class RedisHelper
{
private static readonly string ConnectString = ConfigurationManager.ConnectionStrings["RedisConnection"].ToString();
private static Lazy<ConnectionMultiplexer> _lazyConnection;
private static readonly Object MultiplexerLock = new Object();
private static readonly IDatabase Cache; static RedisHelper()
{
var conn = CreateManager.Value;
Cache = conn.GetDatabase(); //获取实例
} private static Lazy<ConnectionMultiplexer> GetManager(string connectionString = null)
{
if (string.IsNullOrEmpty(connectionString))
{
connectionString = GetDefaultConnectionString();
} return new Lazy<ConnectionMultiplexer>(() => ConnectionMultiplexer.Connect(connectionString));
} private static Lazy<ConnectionMultiplexer> CreateManager
{
get
{
if (_lazyConnection == null)
{
lock (MultiplexerLock)
{
if (_lazyConnection != null) return _lazyConnection; _lazyConnection = GetManager();
return _lazyConnection;
}
} return _lazyConnection;
}
} public static string GetDefaultConnectionString()
{
return ConnectString;
}
}
}
使用patial 修饰符,由于Redis中的数据类型操作不少,所以把它们单独分到一个文件。核心的,可优化的主要还是上面的代码。
使用的是StackExchange.Redis Redis 客户端。
连接字符串从配置文件 application web.config读取。配置如下:
<connectionStrings>
<add name="RedisConnection" connectionString="10.13.11.101:6379,10.13.18.191:6379,keepAlive=180,allowAdmin=True,$CLIENT=,$CLUSTER=,$CONFIG=,$ECHO=,$INFO=,$PING=" />
</connectionStrings>
由于Redis的高速读写的特性,密码是很容易被破解的,所以最好还是部署在内网环境中。
使用 Lazy<ConnectionMultiplexer> 而不是 ConnectionMultiplexer,是可以按需延迟加载。参考文件:
http://blog.sina.com.cn/s/blog_537517170102w3ib.html
真正的操作方法在下面:
using System;
using System.Collections.Generic;
using System.Linq;
using ServiceStack.Text;
using StackExchange.Redis; namespace Common.Redis
{
public partial class RedisHelper
{
public const string DefaultOrder = "desc"; #region Keys
public static bool KeyExists(string key)
{
var bResult = Cache.KeyExists(key);
return bResult;
} public static bool SetExpire(string key, DateTime datetime)
{
return Cache.KeyExpire(key, datetime);
} public static bool SetExpire(string key, int timeout = )
{
return Cache.KeyExpire(key, DateTime.Now.AddSeconds(timeout));
} public static bool Set<T>(string key, T t, int timeout = )
{
var value = JsonSerializer.SerializeToString(t);
bool bResult = Cache.StringSet(key, value);
if (timeout > )
{
Cache.KeyExpire(key, DateTime.Now.AddSeconds(timeout));
}
return bResult;
} public static bool KeyDelete(string key)
{
return Cache.KeyDelete(key);
} public static bool KeyRename(string oldKey, string newKey)
{
return Cache.KeyRename(oldKey, newKey);
}
#endregion #region Hashes
public static bool IsExist(string hashId, string key)
{
return Cache.HashExists(hashId, key);
} public static bool SetHash<T>(string hashId, string key, T t)
{
var value = JsonSerializer.SerializeToString(t);
return Cache.HashSet(hashId, key, value);
} public static bool Remove(string hashId, string key)
{
return Cache.HashDelete(hashId, key);
} public static long StringIncrement(string hashId, string key, long value = )
{
return Cache.HashIncrement(hashId, key, value);
} public static T Get<T>(string hashId, string key)
{
string value = Cache.HashGet(hashId, key);
return JsonSerializer.DeserializeFromString<T>(value);
} public static long GetHashCount(string hashId)
{
var length = Cache.HashLength(hashId);
return length;
} public static string Get(string hashId, string key)
{
string value = Cache.HashGet(hashId, key).ToString();
return value;
} public static List<T> GetAll<T>(string hashId)
{
var result = new List<T>();
var list = Cache.HashGetAll(hashId).ToList();
if (list.Count > )
{
list.ForEach(x =>
{
var value = JsonSerializer.DeserializeFromString<T>(x.Value);
result.Add(value);
});
}
return result;
} public static List<string> GetAllFields(string hashId)
{
var result = new List<string>();
var list = Cache.HashKeys(hashId).ToList();
if (list.Count > )
{
list.ForEach(x =>
{
var value = JsonSerializer.DeserializeFromString<string>(x);
result.Add(value);
});
}
return result;
}
#endregion #region Sorted Sets
public static bool SortedSetItemIsExist(string setId, string item)
{
var value = GetItemScoreFromSortedSet(setId, item);
if (value != null)
{
return true;
}
return false;
} public static bool SortedSetAdd(string setId, string item, double score, int timeout = )
{
return Cache.SortedSetAdd(setId, item, score);
} public static List<string> GetSortedSetRangeByRank(string setId, long fromRank, long toRank, string order = DefaultOrder)
{
var result = new List<string>();
var list = Cache.SortedSetRangeByRank(setId, fromRank, toRank, order == Order.Descending.ToString().ToLower() ? Order.Descending : Order.Ascending).ToList();
if (list.Any())
{
list.ForEach(x =>
{
var value = JsonSerializer.DeserializeFromString<string>(x);
result.Add(value);
});
}
return result;
} public static Dictionary<string, double> GetSortedSetRangeByRankWithScores(string setId, long fromRank, long toRank, string order = DefaultOrder)
{
var result = new Dictionary<string, double>();
var list = Cache.SortedSetRangeByRankWithScores(setId, fromRank, toRank, order == Order.Descending.ToString().ToLower() ? Order.Descending : Order.Ascending).ToList();
if (list.Any())
{
list.ForEach(x =>
{
result.Add(x.Element, x.Score);
});
}
return result;
} public static List<string> GetSortedSetRangeByValue(string setId, long minValue, long maxValue)
{
var result = new List<string>();
var list = Cache.SortedSetRangeByValue(setId, minValue, maxValue).ToList();
if (list.Any())
{
list.ForEach(x =>
{
var value = JsonSerializer.DeserializeFromString<string>(x);
result.Add(value);
});
}
return result;
} public static long GetSortedSetLength(string setId)
{
return Cache.SortedSetLength(setId);
} public static long GetSortedSetLength(string setId, double minValue, double maxValue)
{
return Cache.SortedSetLength(setId, minValue, maxValue);
} public static long? GetItemRankFromSortedSet(string setId, string item, string order = DefaultOrder)
{
return Cache.SortedSetRank(setId, item, order == Order.Descending.ToString().ToLower() ? Order.Descending : Order.Ascending);
} public static double? GetItemScoreFromSortedSet(string setId, string item)
{
return Cache.SortedSetScore(setId, item);
} public static double SetSortedSetItemIncrement(string setId, string item, double score = )
{
return Cache.SortedSetIncrement(setId, item, score);
} public static double SortedSetItemDecrement(string setId, string item, double score = -)
{
return Cache.SortedSetDecrement(setId, item, score);
} public static bool RemoveItemFromSortedSet(string setId, string item)
{
return Cache.SortedSetRemove(setId, item);
} public static long RemoveByRankFromSortedSet(string setId, long fromRank, long toRank)
{
return Cache.SortedSetRemoveRangeByRank(setId, fromRank, toRank);
} public static long RemoveByScoreFromSortedSet(string setId, double minValue, double maxValue)
{
return Cache.SortedSetRemoveRangeByScore(setId, minValue, maxValue);
} public static long RemoveByLexFromSortedSet(string setId, int minValue, int maxValue)
{
//TODO: Don't know its meaning
//return Cache.SortedSetRemoveRangeByValue(setId, minValue, maxValue);
return ;
}
#endregion #region Lists public static long AddList<T>(string listId, T t)
{
var value = JsonSerializer.SerializeToString(t);
return Cache.ListLeftPush(listId, value);
} public static List<T> GetList<T>(string listId, long start = , long stop = -)
{
var result = new List<T>();
var list = Cache.ListRange(listId, start, stop).ToList();
if (list.Count > )
{
list.ForEach(x =>
{
var value = JsonSerializer.DeserializeFromString<T>(x);
result.Add(value);
});
}
return result;
}
#endregion #region Strings public static string Get(string key)
{
string value = Cache.StringGet(key);
return value;
} public static T StringGet<T>(string key)
{
string value = Cache.StringGet(key);
return JsonSerializer.DeserializeFromString<T>(value);
} public static double StringIncrement(string key, double value)
{
return Cache.StringIncrement(key, value);
} public static long StringAppend(string key, string value)
{
return Cache.StringAppend(value, value, CommandFlags.None);
}
#endregion
}
}
ILONEY
Redis 有五种常用数据类型,由于我实际中经常使用的是Hash,List,Sorted Set,String,故只我只贴出了上面我测试有限的方法出来,各位可自行补充。
最好自己新建一个文件,这样会比较符合开放-封闭 原则。
最后附上我为了学习Redis最常访问的站点:
Redis 官网:http://redis.io/
StackExchange.Redis 的github文档:
https://github.com/StackExchange/StackExchange.Redis
Stackoverflow 站点:
http://stackoverflow.com/search?q=Redis
RedisHelper in 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 ...
- 使用 StackExchange.Redis 封装属于自己的 RedisHelper
目录 核心类 ConnectionMultiplexer 字符串(String) 哈希(Hash) 列表(List) 有序集合(sorted set) Key 操作 发布订阅 其他 简介 目前 .NE ...
- RedisHelper (C#)
<add key="RedisServers" value="172.20.2.90:9379,password=Aa+123456789" /> ...
- 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> ...
随机推荐
- JVM内存管理之GC算法精解(五分钟让你彻底明白标记/清除算法)
相信不少猿友看到标题就认为LZ是标题党了,不过既然您已经被LZ忽悠进来了,那就好好的享受一顿算法大餐吧.不过LZ丑话说前面哦,这篇文章应该能让各位彻底理解标记/清除算法,不过倘若各位猿友不能在五分钟内 ...
- php的闭包
闭包是指在创建时封装周围状态的函数,即使闭包所在的环境的不存在了,闭包中封装的状态依然存在. 匿名函数其实就是没有名称的函数,匿名函数可以赋值给变量,还能像其他任何PHP函数对象那样传递.不过匿名函数 ...
- (转)Inno Setup入门(七)——提供安装语言选项
本文转载自:http://blog.csdn.net/yushanddddfenghailin/article/details/17250803 Inno Setup安装目录下有一个Languages ...
- PyQt 5菜单和工具栏
QMainWindow类提供主要应用程序的窗口,有添加状态栏.工具栏.菜单栏等功能 状态栏 self.statusBar().showMessage('Ready') # 创建一个状态栏 # 状态栏显 ...
- MariaDB主从半同步复制详解
半同步复制(Semisynchronous replication) 介于异步复制和全同步复制之间,主库在执行完客户端提交的事务后不是立刻返回给客户端,而是等待至少一个从库接收到并写到relay lo ...
- IO模型之IO多路复用 异步IO select poll epoll 的用法
IO 模型之 多路复用 IO 多路复用IO IO multiplexing 这个词可能有点陌生,但是如果我说 select/epoll ,大概就都能明白了.有些地方也称这种IO方式为 事件驱动IO ( ...
- 搭建Lepus数据库监控系统-记录
一. 安装环境 系统环境:centos6.5 IP:192.168.30.242 hostname:vpn.org 软件:LAMP均已安装.(请确保这些正常安装,并能使用). 系统核心包:(摘自官方 ...
- Spring Data MongoDB 三:基本文档查询(Query、BasicQuery
一.简介 spring Data MongoDB提供了org.springframework.data.mongodb.core.MongoTemplate对MongoDB的CRUD的操作,上一篇我 ...
- [Z]图灵奖获得者Richard Karp讲述Berkeley CS的发展史
A Personal View of Computer Science at Berkeley 赤裸裸的吊炸天
- 腾讯安全反病毒实验室解读“Wannacry”勒索软件
背景 针对昨日英国医院被攻击,随后肆虐中国高校的 WannaCry 勒索事件,腾讯安全反病毒实验室第一时间给出了深度权威的分析.此次勒索事件与以往相比最大的亮点在于,勒索病毒结合了蠕虫的方式进行传播, ...