standalone_redis.go 6.8 KB

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