RedisDbconn.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. using System.Collections.Generic;
  2. using Library;
  3. using System.Linq;
  4. namespace MySystem
  5. {
  6. public class RedisDbconn
  7. {
  8. public readonly static RedisDbconn Instance = new RedisDbconn();
  9. public static CSRedis.CSRedisClient csredis;
  10. private RedisDbconn()
  11. {
  12. }
  13. #region 设置单个字段
  14. public bool Set(string key, object value)
  15. {
  16. return csredis.Set(key, value);
  17. // return false;
  18. }
  19. #endregion
  20. #region 整数累加
  21. public long AddInt(string key, long value = 1)
  22. {
  23. return csredis.IncrBy(key, value);
  24. // return 0;
  25. }
  26. #endregion
  27. #region 数字累加
  28. public decimal AddNumber(string key, decimal value = 1)
  29. {
  30. return csredis.IncrByFloat(key, value);
  31. // return 0;
  32. }
  33. #endregion
  34. #region 获取单个字段
  35. public T Get<T>(string key)
  36. {
  37. return csredis.Get<T>(key);
  38. }
  39. #endregion
  40. #region 设置散列字段
  41. public bool HSet(string key, string field, object value)
  42. {
  43. return csredis.HSet(key, field, value);
  44. // return false;
  45. }
  46. #endregion
  47. #region 散列整数累加
  48. public long HAddInt(string key, string field, long value = 1)
  49. {
  50. return csredis.HIncrBy(key, field, value);
  51. // return 0;
  52. }
  53. #endregion
  54. #region 散列数字累加
  55. public decimal HAddNumber(string key, string field, decimal value = 1)
  56. {
  57. return csredis.HIncrByFloat(key, field, value);
  58. // return 0;
  59. }
  60. #endregion
  61. #region 获取散列元素
  62. public T HGet<T>(string key, string field)
  63. {
  64. return csredis.HGet<T>(key, field);
  65. }
  66. #endregion
  67. #region 获取散列所有元素
  68. public Dictionary<string, T> HGetAll<T>(string key)
  69. {
  70. return csredis.HGetAll<T>(key);
  71. }
  72. #endregion
  73. #region 添加列表对象
  74. public long AddList(string key, object value)
  75. {
  76. return csredis.LPush(key, value);
  77. // return 0;
  78. }
  79. public long AddRightList(string key, object value)
  80. {
  81. return csredis.RPush(key, value);
  82. // return 0;
  83. }
  84. public long AddList(string key, object[] value)
  85. {
  86. return csredis.LPush(key, value);
  87. // return 0;
  88. }
  89. public T RPop<T>(string key)
  90. {
  91. return csredis.RPop<T>(key);
  92. }
  93. #endregion
  94. #region 移动列表元素位置
  95. public T RPopLPush<T>(string key, string tokey)
  96. {
  97. return RedisHelper.RPopLPush<T>(key, tokey);
  98. }
  99. #endregion
  100. #region 添加集合对象
  101. public long SAdd(string key, object value)
  102. {
  103. return csredis.SAdd(key, value);
  104. // return 0;
  105. }
  106. public long SAdd(string key, object[] value)
  107. {
  108. return csredis.SAdd(key, value);
  109. // return 0;
  110. }
  111. #endregion
  112. #region 获取集合对象
  113. public T[] SGetList<T>(string key)
  114. {
  115. return csredis.SMembers<T>(key);
  116. }
  117. #endregion
  118. #region 修改列表对象
  119. public bool SetList(string key, int index, object value)
  120. {
  121. long itemindex = csredis.LLen(key) - index - 1;
  122. return csredis.LSet(key, itemindex, value);
  123. // return false;
  124. }
  125. #endregion
  126. #region 获取列表
  127. public List<T> GetList<T>(string key, int pageNum = 1, int pageSize = 10)
  128. {
  129. int start = (pageNum - 1) * pageSize;
  130. int end = start + pageSize - 1;
  131. T[] list = csredis.LRange<T>(key, start, end);
  132. return list.ToList();
  133. }
  134. #endregion
  135. #region 移除列表对象
  136. public long DelFromList(string key, object value, int count = 1)
  137. {
  138. return RedisHelper.LRem(key, count, value);
  139. }
  140. #endregion
  141. #region 删除列表元素
  142. public void DelList<T>(string key, T item)
  143. {
  144. List<T> oldlist = GetList<T>(key, 1, 10000000);
  145. oldlist.Remove(item);
  146. Clear(key);
  147. AddList(key, oldlist.ToArray());
  148. }
  149. #endregion
  150. #region 添加排序列表对象
  151. public long AddSort(string key, object value, decimal score)
  152. {
  153. return csredis.ZAdd(key, (score, value));
  154. // return 0;
  155. }
  156. #endregion
  157. #region 获取排序列表
  158. public List<T> GetSort<T>(string key, int pageNum = 1, int pageSize = 10)
  159. {
  160. int start = (pageNum - 1) * pageSize;
  161. int end = start + pageSize;
  162. string[] list = csredis.ZRangeByScore(key, start, end);
  163. List<T> lists = new List<T>();
  164. foreach (string record in list)
  165. {
  166. lists.Add(Newtonsoft.Json.JsonConvert.DeserializeObject<T>(record));
  167. }
  168. return lists;
  169. }
  170. public List<T> GetSortDesc<T>(string key, int pageNum = 1, int pageSize = 10)
  171. {
  172. int start = (pageNum - 1) * pageSize;
  173. int end = start + pageSize;
  174. string[] list = csredis.ZRevRangeByScore(key, start, end);
  175. List<T> lists = new List<T>();
  176. foreach (string record in list)
  177. {
  178. lists.Add(Newtonsoft.Json.JsonConvert.DeserializeObject<T>(record));
  179. }
  180. return lists;
  181. }
  182. #endregion
  183. public bool Remove(string key, long start, long end)
  184. {
  185. return csredis.LTrim(key, start, end);
  186. }
  187. public bool RemoveTop(string key, long count)
  188. {
  189. return RedisDbconn.Instance.Remove(key, count, RedisDbconn.Instance.Count(key) - 1);;
  190. }
  191. public long Count(string key)
  192. {
  193. return csredis.LLen(key);
  194. }
  195. public void Clear(string pattern)
  196. {
  197. string[] keys = csredis.Keys(pattern);
  198. csredis.Del(keys);
  199. }
  200. public string[] GetKeys(string pattern)
  201. {
  202. string[] keys = csredis.Keys(pattern);
  203. return keys;
  204. }
  205. public void SetExpire(string key, int expire)
  206. {
  207. csredis.Expire(key, expire); //秒为单位
  208. }
  209. #region 判断Key是否存在
  210. public bool CheckKey(string key)
  211. {
  212. if (csredis.Exists(key))
  213. {
  214. return true;
  215. }
  216. return false;
  217. }
  218. #endregion
  219. }
  220. }