cluster_redis.go 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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. func (rc *ClusterRedisClient) SetEX(key string, val interface{}, timeout time.Duration) bool {
  133. _, err := rc.redisClient.SetEX(context.TODO(), key, val, timeout).Result()
  134. if err != nil {
  135. return false
  136. }
  137. return true
  138. }
  139. // Delete
  140. // @Description: 删除redis中的键值对
  141. // @receiver rc
  142. // @param key
  143. // @return error
  144. func (rc *ClusterRedisClient) Delete(key string) error {
  145. var err error
  146. err = rc.redisClient.Del(context.TODO(), key).Err()
  147. if err != nil {
  148. return err
  149. }
  150. err = rc.redisClient.HDel(context.TODO(), DefaultKey, key).Err()
  151. return err
  152. }
  153. // IsExist
  154. // @Description: 根据key判断是否写入缓存中
  155. // @receiver rc
  156. // @param key
  157. // @return bool
  158. func (rc *ClusterRedisClient) IsExist(key string) bool {
  159. result, err := rc.redisClient.Exists(context.TODO(), key).Result()
  160. if err != nil {
  161. return false
  162. }
  163. if result == 0 {
  164. _ = rc.redisClient.HDel(context.TODO(), DefaultKey, key).Err()
  165. return false
  166. }
  167. return true
  168. }
  169. // LPush
  170. // @Description: 写入list
  171. // @receiver rc
  172. // @param key
  173. // @param val
  174. // @return error
  175. func (rc *ClusterRedisClient) LPush(key string, val interface{}) error {
  176. data, _ := json.Marshal(val)
  177. err := rc.redisClient.LPush(context.TODO(), key, data).Err()
  178. return err
  179. }
  180. // Brpop
  181. // @Description: 从list中读取
  182. // @receiver rc
  183. // @param key
  184. // @param callback
  185. func (rc *ClusterRedisClient) Brpop(key string, callback func([]byte)) {
  186. values, err := rc.redisClient.BRPop(context.TODO(), 1*time.Second, key).Result()
  187. if err != nil {
  188. return
  189. }
  190. if len(values) < 2 {
  191. fmt.Println("assert is wrong")
  192. return
  193. }
  194. callback([]byte(values[1]))
  195. }
  196. // GetRedisTTL
  197. // @Description: 获取key的过期时间
  198. // @receiver rc
  199. // @param key
  200. // @return time.Duration
  201. func (rc *ClusterRedisClient) GetRedisTTL(key string) time.Duration {
  202. value, err := rc.redisClient.TTL(context.TODO(), key).Result()
  203. if err != nil {
  204. return 0
  205. }
  206. return value
  207. }
  208. // Incrby
  209. // @Description: 设置自增值
  210. // @receiver rc
  211. // @param key
  212. // @param num
  213. // @return interface{}
  214. // @return error
  215. func (rc *ClusterRedisClient) Incrby(key string, num int) (interface{}, error) {
  216. return rc.redisClient.IncrBy(context.TODO(), key, int64(num)).Result()
  217. }
  218. // Do
  219. // @Description: cmd执行redis命令
  220. // @receiver rc
  221. // @param commandName
  222. // @param args
  223. // @return reply
  224. // @return err
  225. func (rc *ClusterRedisClient) Do(commandName string, args ...interface{}) (reply interface{}, err error) {
  226. newArgs := []interface{}{commandName}
  227. newArgs = append(newArgs, args...)
  228. return rc.redisClient.Do(context.TODO(), newArgs...).Result()
  229. }
  230. // RunLUA
  231. // @Description: cmd执行redis命令
  232. // @receiver rc
  233. // @param commandName
  234. // @param args
  235. // @return reply
  236. // @return err
  237. func (rc *ClusterRedisClient) RunLUA(command string, ctx context.Context, keys []string, args ...interface{}) bool {
  238. script := redis.NewScript(command)
  239. result, err := script.Run(ctx, rc.redisClient, keys, args...).Int()
  240. if err != nil {
  241. return false
  242. }
  243. if result == 1 {
  244. return true
  245. }
  246. return false
  247. }