|
|
@ -19,7 +19,15 @@ func NewRedisHelper(master string, address ...string) *RedisHelper { |
|
|
|
r := &RedisHelper{ctx: context.Background()} |
|
|
|
r.InitialCluster(master, address...) |
|
|
|
return r |
|
|
|
|
|
|
|
//r := &RedisHelper{ctx: context.Background()}
|
|
|
|
//var wg sync.WaitGroup
|
|
|
|
//wg.Add(1)
|
|
|
|
//go func() {
|
|
|
|
// defer wg.Done()
|
|
|
|
// r.InitialCluster(master, address...)
|
|
|
|
//}()
|
|
|
|
//wg.Wait()
|
|
|
|
//return r
|
|
|
|
} |
|
|
|
|
|
|
|
func (the *RedisHelper) InitialCluster(master string, address ...string) { |
|
|
@ -39,6 +47,11 @@ func (the *RedisHelper) InitialCluster(master string, address ...string) { |
|
|
|
} |
|
|
|
|
|
|
|
func (the *RedisHelper) Get(key string) string { |
|
|
|
if the.rdb == nil { |
|
|
|
log.Println("Redis client is not initialized") |
|
|
|
return "" |
|
|
|
} |
|
|
|
|
|
|
|
val, err := the.rdb.Get(the.ctx, key).Result() |
|
|
|
if errors.Is(err, redis.Nil) { |
|
|
|
log.Printf("%s does not exist", key) |
|
|
|