zset.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package redis
  4. import (
  5. "fmt"
  6. "github.com/go-redis/redis"
  7. )
  8. func (p *Redis) ZRevRange(key string, start, stop int64) (res []string, err error) {
  9. // 安全检查
  10. if p == nil {
  11. return res, errRedis
  12. }
  13. if p.cluster {
  14. // 客户端安全检查
  15. if p.cclient == nil {
  16. return res, errRedisCClient
  17. }
  18. return p.cclient.ZRevRange(key, start, stop).Result()
  19. }
  20. // 客户端安全检查
  21. if p.client == nil {
  22. return res, errRedisClient
  23. }
  24. return p.client.ZRevRange(key, start, stop).Result()
  25. }
  26. func (p *Redis) ZRevRangeByScore(key string, max, min string, offset, count int64) (res []string, err error) {
  27. // 安全检查
  28. if p == nil {
  29. return res, errRedis
  30. }
  31. if p.cluster {
  32. // 客户端安全检查
  33. if p.cclient == nil {
  34. return res, errRedisCClient
  35. }
  36. return p.cclient.ZRevRangeByScore(key,
  37. redis.ZRangeBy{
  38. Min: min,
  39. Max: max,
  40. Offset: offset,
  41. Count: count,
  42. }).Result()
  43. }
  44. // 客户端安全检查
  45. if p.client == nil {
  46. return res, errRedisClient
  47. }
  48. return p.client.ZRevRangeByScore(key,
  49. redis.ZRangeBy{
  50. Min: min,
  51. Max: max,
  52. Offset: offset,
  53. Count: count,
  54. }).Result()
  55. }
  56. func (p *Redis) ZAdd(key string, score float64, member interface{}) (res int64, err error) {
  57. // 安全检查
  58. if p == nil {
  59. return res, errRedis
  60. }
  61. if p.cluster {
  62. // 客户端安全检查
  63. if p.cclient == nil {
  64. return res, errRedisCClient
  65. }
  66. return p.cclient.ZAdd(key,
  67. redis.Z{
  68. Score: score,
  69. Member: member,
  70. }).Result()
  71. }
  72. // 客户端安全检查
  73. if p.client == nil {
  74. return res, errRedisClient
  75. }
  76. return p.client.ZAdd(key,
  77. redis.Z{
  78. Score: score,
  79. Member: member,
  80. }).Result()
  81. }
  82. func (p *Redis) ZCount(key, min, max string) (res int64, err error) {
  83. // 安全检查
  84. if p == nil {
  85. return res, errRedis
  86. }
  87. if p.cluster {
  88. // 客户端安全检查
  89. if p.cclient == nil {
  90. return res, errRedisCClient
  91. }
  92. return p.cclient.ZCount(key, min, max).Result()
  93. }
  94. // 客户端安全检查
  95. if p.client == nil {
  96. return res, errRedisClient
  97. }
  98. return p.client.ZCount(key, min, max).Result()
  99. }
  100. func (p *Redis) ZScore(key, member string) (res float64, err error) {
  101. // 安全检查
  102. if p == nil {
  103. return res, errRedis
  104. }
  105. if p.cluster {
  106. // 客户端安全检查
  107. if p.cclient == nil {
  108. return res, errRedisCClient
  109. }
  110. return p.cclient.ZScore(key, member).Result()
  111. }
  112. // 客户端安全检查
  113. if p.client == nil {
  114. return res, errRedisClient
  115. }
  116. return p.client.ZScore(key, member).Result()
  117. }
  118. func (p *Redis) ZRange(key string, start, stop int64) (res []string, err error) {
  119. // 安全检查
  120. if p == nil {
  121. return res, errRedis
  122. }
  123. if p.cluster {
  124. // 客户端安全检查
  125. if p.cclient == nil {
  126. return res, errRedisCClient
  127. }
  128. return p.cclient.ZRange(key, start, stop).Result()
  129. }
  130. // 客户端安全检查
  131. if p.client == nil {
  132. return res, errRedisClient
  133. }
  134. return p.client.ZRange(key, start, stop).Result()
  135. }
  136. func (p *Redis) ZIncrBy(key string, incr float64, member string) (res float64, err error) {
  137. // 安全检查
  138. if p == nil {
  139. return res, errRedis
  140. }
  141. if p.cluster {
  142. // 客户端安全检查
  143. if p.cclient == nil {
  144. return res, errRedisCClient
  145. }
  146. return p.cclient.ZIncrBy(key, incr, member).Result()
  147. }
  148. // 客户端安全检查
  149. if p.client == nil {
  150. return res, errRedisClient
  151. }
  152. return p.client.ZIncrBy(key, incr, member).Result()
  153. }
  154. func (p *Redis) ZRem(key string, members ...interface{}) (res int64, err error) {
  155. // 安全检查
  156. if p == nil {
  157. return res, errRedis
  158. }
  159. if p.cluster {
  160. // 客户端安全检查
  161. if p.cclient == nil {
  162. return res, errRedisCClient
  163. }
  164. return p.cclient.ZRem(key, members...).Result()
  165. }
  166. // 客户端安全检查
  167. if p.client == nil {
  168. return res, errRedisClient
  169. }
  170. return p.client.ZRem(key, members...).Result()
  171. }
  172. func (p *Redis) ZUnionStore(dest string, weights []float64, aggregate string, keys ...string) (res int64, err error) {
  173. // 安全检查
  174. if p == nil {
  175. return res, errRedis
  176. }
  177. if p.cluster {
  178. return 0, fmt.Errorf("cluster unsupport <zunionstore>.")
  179. }
  180. // 客户端安全检查
  181. if p.client == nil {
  182. return res, errRedisClient
  183. }
  184. return p.client.ZUnionStore(dest,
  185. redis.ZStore{
  186. Weights: weights,
  187. Aggregate: aggregate,
  188. },
  189. keys...).Result()
  190. }
  191. func (p *Redis) ZCard(key string) (res int64, err error) {
  192. // 安全检查
  193. if p == nil {
  194. return res, errRedis
  195. }
  196. if p.cluster {
  197. // 客户端安全检查
  198. if p.cclient == nil {
  199. return res, errRedisCClient
  200. }
  201. return p.cclient.ZCard(key).Result()
  202. }
  203. // 客户端安全检查
  204. if p.client == nil {
  205. return res, errRedisClient
  206. }
  207. return p.client.ZCard(key).Result()
  208. }
  209. func (p *Redis) ZRemRangeByScore(key, min, max string) (res int64, err error) {
  210. // 安全检查
  211. if p == nil {
  212. return res, errRedis
  213. }
  214. if p.cluster {
  215. // 客户端安全检查
  216. if p.cclient == nil {
  217. return res, errRedisCClient
  218. }
  219. return p.cclient.ZRemRangeByScore(key, min, max).Result()
  220. }
  221. // 客户端安全检查
  222. if p.client == nil {
  223. return res, errRedisClient
  224. }
  225. return p.client.ZRemRangeByScore(key, min, max).Result()
  226. }
  227. func (p *Redis) ZRevRangeWithScores(key string, star, stop int64) (res []redis.Z, err error) {
  228. // 安全检查
  229. if p == nil {
  230. return res, errRedis
  231. }
  232. if p.cluster {
  233. // 客户端安全检查
  234. if p.cclient == nil {
  235. return res, errRedisCClient
  236. }
  237. return p.cclient.ZRevRangeWithScores(key, star, stop).Result()
  238. }
  239. // 客户端安全检查
  240. if p.client == nil {
  241. return res, errRedisClient
  242. }
  243. return p.client.ZRevRangeWithScores(key, star, stop).Result()
  244. }