standalone_redis.go 6.2 KB

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