cluster_redis.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. package redis
  2. import (
  3. "context"
  4. "encoding/json"
  5. "errors"
  6. "fmt"
  7. "github.com/go-redis/redis/v8"
  8. "strings"
  9. "time"
  10. )
  11. // ClusterRedisClient
  12. // @Description: 集群的redis客户端
  13. type ClusterRedisClient struct {
  14. redisClient *redis.ClusterClient
  15. }
  16. var DefaultKey = "zcmRedis"
  17. // InitClusterRedis
  18. // @Description: 初始化集群redis客户端
  19. // @param config
  20. // @return clusterRedisClient
  21. // @return err
  22. func InitClusterRedis(config string) (clusterRedisClient *ClusterRedisClient, err error) {
  23. var cf map[string]string
  24. err = json.Unmarshal([]byte(config), &cf)
  25. if err != nil {
  26. return
  27. }
  28. //if _, ok := cf["key"]; !ok {
  29. // cf["key"] = DefaultKey
  30. //}
  31. // 集群地址
  32. connList := make([]string, 0)
  33. if _, ok := cf["conn"]; !ok {
  34. err = errors.New("config has no conn key")
  35. return
  36. } else {
  37. connList = strings.Split(cf["conn"], ",")
  38. if len(connList) <= 1 {
  39. err = errors.New("conn address less than or equal to 1")
  40. return
  41. }
  42. }
  43. // 密码
  44. if _, ok := cf["password"]; !ok {
  45. cf["password"] = ""
  46. }
  47. // 创建 Redis 客户端配置对象
  48. clusterOptions := &redis.ClusterOptions{
  49. Addrs: connList, // 设置 Redis 节点的 IP 地址和端口号
  50. Password: cf["password"],
  51. }
  52. // 创建 Redis 集群客户端
  53. client := redis.NewClusterClient(clusterOptions)
  54. // 测试连接并获取信息
  55. _, err = client.Ping(context.TODO()).Result()
  56. if err != nil {
  57. err = errors.New("redis 链接失败:" + err.Error())
  58. return
  59. }
  60. clusterRedisClient = &ClusterRedisClient{redisClient: client}
  61. return
  62. }
  63. // Get
  64. // @Description: 根据key获取数据(其实是返回的字节编码)
  65. // @receiver rc
  66. // @param key
  67. // @return interface{}
  68. func (rc *ClusterRedisClient) Get(key string) interface{} {
  69. data, err := rc.redisClient.Get(context.TODO(), key).Bytes()
  70. if err != nil {
  71. return nil
  72. }
  73. return data
  74. }
  75. // GetStr
  76. // @Description: 根据key获取字符串数据
  77. // @receiver rc
  78. // @param key
  79. // @return string
  80. func (rc *ClusterRedisClient) GetStr(key string) string {
  81. return rc.redisClient.Get(context.TODO(), key).Val()
  82. }
  83. // GetInt
  84. // @Description: 根据key获取int数据
  85. // @receiver rc
  86. // @param key
  87. // @return int
  88. // @return error
  89. func (rc *ClusterRedisClient) GetInt64(key string) (int64, error) {
  90. return rc.redisClient.Get(context.TODO(), key).Int64()
  91. }
  92. // GetInt
  93. // @Description: 根据key获取int数据
  94. // @receiver rc
  95. // @param key
  96. // @return int
  97. // @return error
  98. func (rc *ClusterRedisClient) GetUInt64(key string) (uint64, error) {
  99. return rc.redisClient.Get(context.TODO(), key).Uint64()
  100. }
  101. // RedisBytes
  102. // @Description: 根据key获取字节编码数据
  103. // @receiver rc
  104. // @param key
  105. // @return data
  106. // @return err
  107. func (rc *ClusterRedisClient) RedisBytes(key string) (data []byte, err error) {
  108. data, err = rc.redisClient.Get(context.TODO(), key).Bytes()
  109. return
  110. }
  111. // RedisString
  112. // @Description: 根据key获取字符串数据
  113. // @receiver rc
  114. // @param key
  115. // @return data
  116. // @return err
  117. func (rc *ClusterRedisClient) RedisString(key string) (data string, err error) {
  118. data, err = rc.redisClient.Get(context.TODO(), key).Result()
  119. return
  120. }
  121. // RedisInt
  122. // @Description: 根据key获取int数据
  123. // @receiver rc
  124. // @param key
  125. // @return data
  126. // @return err
  127. func (rc *ClusterRedisClient) RedisInt(key string) (data int, err error) {
  128. data, err = rc.redisClient.Get(context.TODO(), key).Int()
  129. return
  130. }
  131. // Put
  132. // @Description: put一个数据到redis
  133. // @receiver rc
  134. // @param key
  135. // @param val
  136. // @param timeout
  137. // @return error
  138. func (rc *ClusterRedisClient) Put(key string, val interface{}, timeout time.Duration) error {
  139. var err error
  140. err = rc.redisClient.SetEX(context.TODO(), key, val, timeout).Err()
  141. if err != nil {
  142. return err
  143. }
  144. err = rc.redisClient.HSet(context.TODO(), DefaultKey, key, true).Err()
  145. return err
  146. }
  147. // SetNX
  148. // @Description: 设置一个会过期时间的值
  149. // @receiver rc
  150. // @param key
  151. // @param val
  152. // @param timeout
  153. // @return bool
  154. func (rc *ClusterRedisClient) SetNX(key string, val interface{}, timeout time.Duration) bool {
  155. result, err := rc.redisClient.SetNX(context.TODO(), key, val, timeout).Result()
  156. if err != nil {
  157. return false
  158. }
  159. return result
  160. }
  161. // Delete
  162. // @Description: 删除redis中的键值对
  163. // @receiver rc
  164. // @param key
  165. // @return error
  166. func (rc *ClusterRedisClient) Delete(key string) error {
  167. var err error
  168. err = rc.redisClient.Del(context.TODO(), key).Err()
  169. if err != nil {
  170. return err
  171. }
  172. err = rc.redisClient.HDel(context.TODO(), DefaultKey, key).Err()
  173. return err
  174. }
  175. // IsExist
  176. // @Description: 根据key判断是否写入缓存中
  177. // @receiver rc
  178. // @param key
  179. // @return bool
  180. func (rc *ClusterRedisClient) IsExist(key string) bool {
  181. result, err := rc.redisClient.Exists(context.TODO(), key).Result()
  182. if err != nil {
  183. return false
  184. }
  185. if result == 0 {
  186. _ = rc.redisClient.HDel(context.TODO(), DefaultKey, key).Err()
  187. return false
  188. }
  189. return true
  190. }
  191. // LPush
  192. // @Description: 写入list
  193. // @receiver rc
  194. // @param key
  195. // @param val
  196. // @return error
  197. func (rc *ClusterRedisClient) LPush(key string, val interface{}) error {
  198. data, _ := json.Marshal(val)
  199. err := rc.redisClient.LPush(context.TODO(), key, data).Err()
  200. return err
  201. }
  202. // Brpop
  203. // @Description: 从list中读取
  204. // @receiver rc
  205. // @param key
  206. // @param callback
  207. func (rc *ClusterRedisClient) Brpop(key string, callback func([]byte)) {
  208. values, err := rc.redisClient.BRPop(context.TODO(), 1*time.Second, key).Result()
  209. if err != nil {
  210. return
  211. }
  212. if len(values) < 2 {
  213. fmt.Println("assert is wrong")
  214. return
  215. }
  216. callback([]byte(values[1]))
  217. }
  218. // GetRedisTTL
  219. // @Description: 获取key的过期时间
  220. // @receiver rc
  221. // @param key
  222. // @return time.Duration
  223. func (rc *ClusterRedisClient) GetRedisTTL(key string) time.Duration {
  224. value, err := rc.redisClient.TTL(context.TODO(), key).Result()
  225. if err != nil {
  226. return 0
  227. }
  228. return value
  229. }
  230. // Incrby
  231. // @Description: 设置自增值
  232. // @receiver rc
  233. // @param key
  234. // @param num
  235. // @return interface{}
  236. // @return error
  237. func (rc *ClusterRedisClient) Incrby(key string, num int) (interface{}, error) {
  238. return rc.redisClient.IncrBy(context.TODO(), key, int64(num)).Result()
  239. }
  240. // Do
  241. // @Description: cmd执行redis命令
  242. // @receiver rc
  243. // @param commandName
  244. // @param args
  245. // @return reply
  246. // @return err
  247. func (rc *ClusterRedisClient) Do(commandName string, args ...interface{}) (reply interface{}, err error) {
  248. newArgs := []interface{}{commandName}
  249. newArgs = append(newArgs, args...)
  250. return rc.redisClient.Do(context.TODO(), newArgs...).Result()
  251. }