cluster_redis.go 5.6 KB

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