redis.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package cache
  2. import (
  3. "context"
  4. "eta/eta_mini_ht_api/common/component/config"
  5. logger "eta/eta_mini_ht_api/common/component/log"
  6. "eta/eta_mini_ht_api/common/contants"
  7. "github.com/go-redis/redis/v8"
  8. "log"
  9. "strings"
  10. "sync"
  11. "time"
  12. )
  13. var (
  14. redisCache *RedisCache
  15. redisOnce sync.Once
  16. )
  17. func init() {
  18. if GetInstance() == nil {
  19. panic("初始化redis失败")
  20. }
  21. logger.Info("redis初始化成功")
  22. }
  23. func GetInstance() *RedisCache {
  24. redisOnce.Do(func() {
  25. // 检查是否成功获取到RedisConfig实例,没有配置则不进行redis初始化
  26. if redisConf, ok := config.GetConfig(contants.REDIS).(*config.RedisConfig); ok {
  27. if redisConf.GetHost() != "" {
  28. logger.Info("初始化redis")
  29. // 这里可以添加初始化Redis的逻辑
  30. redisCache = newRedis(redisConf)
  31. _, err := redisCache.Do("Ping")
  32. if err != nil {
  33. log.Fatalf("redis 链接失败:%v", err)
  34. }
  35. } else {
  36. logger.Info("Redis configuration is incomplete: Host is missing")
  37. return
  38. }
  39. }
  40. })
  41. return redisCache
  42. }
  43. func newRedis(config *config.RedisConfig) *RedisCache {
  44. if &config == nil || config.GetHost() == "" {
  45. log.Fatalf("redis 连接失败")
  46. }
  47. redisTemplate := redis.NewUniversalClient(&redis.UniversalOptions{
  48. Addrs: strings.Split(config.GetHost(), ","),
  49. DB: config.GetDatabase(),
  50. Password: config.GetPassword(),
  51. IdleTimeout: time.Second * time.Duration(config.GetIdleTimeout()),
  52. MinIdleConns: config.GetMaxIdle(),
  53. })
  54. return &RedisCache{redisTemplate: redisTemplate}
  55. }
  56. // RedisCache
  57. // @Description: redis缓存
  58. type RedisCache struct {
  59. redisTemplate redis.UniversalClient
  60. }
  61. func (r *RedisCache) GetHSet(key string) map[string]string {
  62. return r.GetHSetWithContext(context.Background(), key)
  63. }
  64. func (r *RedisCache) GetHSetWithContext(ctx context.Context, key string) map[string]string {
  65. value, _ := r.redisTemplate.HGetAll(ctx, key).Result()
  66. return value
  67. }
  68. func (r *RedisCache) SetHSet(key string, timeout time.Duration, val ...interface{}) error {
  69. return r.SetHSetWithContext(context.Background(), key, timeout, val...)
  70. }
  71. func (r *RedisCache) SetHSetWithContext(ctx context.Context, key string, timeout time.Duration, val ...interface{}) error {
  72. err := r.redisTemplate.HSet(ctx, key, val...).Err()
  73. if err != nil {
  74. return err
  75. }
  76. return r.redisTemplate.Expire(ctx, key, timeout).Err()
  77. }
  78. // GetString 获取一个值
  79. func (r *RedisCache) GetString(key string) string {
  80. return r.GetStringWithContext(context.Background(), key)
  81. }
  82. // GetStringWithContext 获取一个值
  83. func (r *RedisCache) GetStringWithContext(ctx context.Context, key string) (value string) {
  84. value, _ = r.redisTemplate.Get(ctx, key).Result()
  85. return
  86. }
  87. // SetString 设置一个值
  88. func (r *RedisCache) SetString(key string, val string, expired int) error {
  89. return r.SetStringWithContext(context.Background(), key, val, expired)
  90. }
  91. // SetStringWithContext 设置一个值
  92. func (r *RedisCache) SetStringWithContext(ctx context.Context, key string, val string, expired int) error {
  93. return r.redisTemplate.SetEX(ctx, key, val, time.Duration(expired)*time.Second).Err()
  94. }
  95. // IsExist 判断key是否存在
  96. func (r *RedisCache) IsExist(key string) bool {
  97. return r.IsExistWithContext(context.Background(), key)
  98. }
  99. // IsExistWithContext 判断key是否存在
  100. func (r *RedisCache) IsExistWithContext(ctx context.Context, key string) bool {
  101. result, _ := r.redisTemplate.Exists(ctx, key).Result()
  102. return result > 0
  103. }
  104. func (r *RedisCache) SetIfNotExist(key string, val string, expired int) bool {
  105. return r.SetIfNotExistWithContext(context.Background(), key, val, expired)
  106. }
  107. func (r *RedisCache) SetIfNotExistWithContext(ctx context.Context, key string, val string, expired int) bool {
  108. return r.redisTemplate.SetNX(ctx, key, val, time.Duration(expired)*time.Second).Val()
  109. }
  110. // Delete 删除
  111. func (r *RedisCache) Delete(key string) error {
  112. return r.DeleteWithContext(context.Background(), key)
  113. }
  114. // DeleteWithContext 删除
  115. func (r *RedisCache) DeleteWithContext(ctx context.Context, key string) error {
  116. return r.redisTemplate.Del(ctx, key).Err()
  117. }
  118. // Do 执行指令
  119. func (r *RedisCache) Do(commandName string, args ...interface{}) (reply interface{}, err error) {
  120. return r.DoWithContext(context.Background(), commandName, args...)
  121. }
  122. // DoWithContext 执行指令
  123. func (r *RedisCache) DoWithContext(ctx context.Context, commandName string, args ...interface{}) (reply interface{}, err error) {
  124. newArgs := []interface{}{commandName}
  125. newArgs = append(newArgs, args...)
  126. return r.redisTemplate.Do(ctx, newArgs...).Result()
  127. }