cluster_redis.go 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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. //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. // GetUInt64
  84. // @Description: 根据key获取uint64数据
  85. // @receiver rc
  86. // @param key
  87. // @return int
  88. // @return error
  89. func (rc *ClusterRedisClient) GetUInt64(key string) (uint64, error) {
  90. return rc.redisClient.Get(context.TODO(), key).Uint64()
  91. }
  92. // RedisBytes
  93. // @Description: 根据key获取字节编码数据
  94. // @receiver rc
  95. // @param key
  96. // @return data
  97. // @return err
  98. func (rc *ClusterRedisClient) RedisBytes(key string) (data []byte, err error) {
  99. data, err = rc.redisClient.Get(context.TODO(), key).Bytes()
  100. return
  101. }
  102. // RedisString
  103. // @Description: 根据key获取字符串数据
  104. // @receiver rc
  105. // @param key
  106. // @return data
  107. // @return err
  108. func (rc *ClusterRedisClient) RedisString(key string) (data string, err error) {
  109. data, err = rc.redisClient.Get(context.TODO(), key).Result()
  110. return
  111. }
  112. // RedisInt
  113. // @Description: 根据key获取int数据
  114. // @receiver rc
  115. // @param key
  116. // @return data
  117. // @return err
  118. func (rc *ClusterRedisClient) RedisInt(key string) (data int, err error) {
  119. data, err = rc.redisClient.Get(context.TODO(), key).Int()
  120. return
  121. }
  122. // Put
  123. // @Description: put一个数据到redis
  124. // @receiver rc
  125. // @param key
  126. // @param val
  127. // @param timeout
  128. // @return error
  129. func (rc *ClusterRedisClient) Put(key string, val interface{}, timeout time.Duration) error {
  130. var err error
  131. err = rc.redisClient.SetEX(context.TODO(), key, val, timeout).Err()
  132. if err != nil {
  133. return err
  134. }
  135. err = rc.redisClient.HSet(context.TODO(), DefaultKey, key, true).Err()
  136. return err
  137. }
  138. // SetNX
  139. // @Description: 设置一个会过期时间的值
  140. // @receiver rc
  141. // @param key
  142. // @param val
  143. // @param timeout
  144. // @return bool
  145. func (rc *ClusterRedisClient) SetNX(key string, val interface{}, timeout time.Duration) bool {
  146. result, err := rc.redisClient.SetNX(context.TODO(), key, val, timeout).Result()
  147. if err != nil {
  148. return false
  149. }
  150. return result
  151. }
  152. // Delete
  153. // @Description: 删除redis中的键值对
  154. // @receiver rc
  155. // @param key
  156. // @return error
  157. func (rc *ClusterRedisClient) Delete(key string) error {
  158. var err error
  159. err = rc.redisClient.Del(context.TODO(), key).Err()
  160. if err != nil {
  161. return err
  162. }
  163. err = rc.redisClient.HDel(context.TODO(), DefaultKey, key).Err()
  164. return err
  165. }
  166. // IsExist
  167. // @Description: 根据key判断是否写入缓存中
  168. // @receiver rc
  169. // @param key
  170. // @return bool
  171. func (rc *ClusterRedisClient) IsExist(key string) bool {
  172. result, err := rc.redisClient.Exists(context.TODO(), key).Result()
  173. if err != nil {
  174. return false
  175. }
  176. if result == 0 {
  177. _ = rc.redisClient.HDel(context.TODO(), DefaultKey, key).Err()
  178. return false
  179. }
  180. return true
  181. }
  182. // LPush
  183. // @Description: 写入list
  184. // @receiver rc
  185. // @param key
  186. // @param val
  187. // @return error
  188. func (rc *ClusterRedisClient) LPush(key string, val interface{}) error {
  189. data, _ := json.Marshal(val)
  190. err := rc.redisClient.LPush(context.TODO(), key, data).Err()
  191. return err
  192. }
  193. // Brpop
  194. // @Description: 从list中读取
  195. // @receiver rc
  196. // @param key
  197. // @param callback
  198. func (rc *ClusterRedisClient) Brpop(key string, callback func([]byte)) {
  199. values, err := rc.redisClient.BRPop(context.TODO(), 1*time.Second, key).Result()
  200. if err != nil {
  201. return
  202. }
  203. if len(values) < 2 {
  204. fmt.Println("assert is wrong")
  205. return
  206. }
  207. callback([]byte(values[1]))
  208. }
  209. // GetRedisTTL
  210. // @Description: 获取key的过期时间
  211. // @receiver rc
  212. // @param key
  213. // @return time.Duration
  214. func (rc *ClusterRedisClient) GetRedisTTL(key string) time.Duration {
  215. value, err := rc.redisClient.TTL(context.TODO(), key).Result()
  216. if err != nil {
  217. return 0
  218. }
  219. return value
  220. }
  221. // Incrby
  222. // @Description: 设置自增值
  223. // @receiver rc
  224. // @param key
  225. // @param num
  226. // @return interface{}
  227. // @return error
  228. func (rc *ClusterRedisClient) Incrby(key string, num int) (interface{}, error) {
  229. return rc.redisClient.IncrBy(context.TODO(), key, int64(num)).Result()
  230. }
  231. // Do
  232. // @Description: cmd执行redis命令
  233. // @receiver rc
  234. // @param commandName
  235. // @param args
  236. // @return reply
  237. // @return err
  238. func (rc *ClusterRedisClient) Do(commandName string, args ...interface{}) (reply interface{}, err error) {
  239. newArgs := []interface{}{commandName}
  240. newArgs = append(newArgs, args...)
  241. return rc.redisClient.Do(context.TODO(), newArgs...).Result()
  242. }
  243. // SAdd
  244. // @Description: 写入set元素
  245. // @receiver rc
  246. // @param commandName
  247. // @param args
  248. // @return reply
  249. // @return err
  250. func (rc *ClusterRedisClient) SAdd(key string, args ...interface{}) (err error) {
  251. return rc.redisClient.SAdd(context.TODO(), key, args...).Err()
  252. }
  253. // SAdd
  254. // @Description: 删除set集合中指定的元素
  255. // @receiver rc
  256. // @param commandName
  257. // @param args
  258. // @return reply
  259. // @return err
  260. func (rc *ClusterRedisClient) SRem(key string, args ...interface{}) (err error) {
  261. return rc.redisClient.SRem(context.TODO(), key, args...).Err()
  262. }
  263. // SAdd
  264. // @Description: 判断元素是否在集合中
  265. // @receiver rc
  266. // @param commandName
  267. // @param args
  268. // @return reply
  269. // @return err
  270. func (rc *ClusterRedisClient) SIsMember(key string, args interface{}) (isMember bool, err error) {
  271. isMember, err = rc.redisClient.SIsMember(context.TODO(), key, args).Result()
  272. return
  273. }