redis相关资料

http://blog.csdn.net/qiujialongjjj/article/details/17221777
C# Redis实战(三) 连接池

http://www.cnblogs.com/jiagoushi/p/4024530.html
serviceStack.Redis 在PooledRedisClientManager 中设置密码

http://www.cnblogs.com/marsblog/p/3287275.html
redis在.net架构中的应用(1)--使用servicestack连接redis

http://www.cnblogs.com/marsblog/p/3291692.html
redis在.net架构中的应用(2)--并发和原子操作不可兼得

http://www.zhihu.com/question/19764056

http://www.yiibai.com/redis/redis_quick_guide.html
Redis快速入门

http://www.oschina.net/question/12_27517
浅谈 Redis 数据库的键值设计

http://blog.csdn.net/mindfloating/article/details/8121479
Redis 事务

http://www.zhihu.com/question/31951078 redis 的incr/decr 的原子性

https://www.nuget.org/packages/ServiceStack.Redis/

C# 调用redis
http://www.cnblogs.com/mushroom/p/4217541.html
c#实现redis客户端

http://blog.csdn.net/renfufei/article/details/38474435
Windows下安装并设置Redis

nuget
ServiceStack.Redis Version 3.9.71
https://servicestack.net/download#free-quotas

连接池,使用哪个DB
C# 类
IRedisClient、ICacheClient
1、sortedset、string、list、hash、set
2、if (!CacheRedisClient.ContainsKey(key)) 有没有必要,没有:string返回null,CacheRedisClient.GetItemIndexInSortedSetDesc()=-1
3、使用连接池
4、存储有序集合,太多耗时
5、可扩展,key要短,key不可为中文,乱码

报告解读,TPS计算,50线程,250/50=5次,1000毫秒/5次=200毫秒/次
http://www.ha97.com/5095.html

ServiceStack.Redis源码

http://www.symbolsource.org/Public/Metadata/NuGet/Project/ServiceStack.Redis.Signed/4.0.4/Release/.NETFramework,Version=v4.0/ServiceStack.Redis

原文地址:https://www.cnblogs.com/cn-chenhao/p/4797971.html