redis/redis.go
2024-06-21 17:44:05 +08:00

22 lines
441 B
Go

package redis
import (
"qoobing.com/gomod/redis/redis"
"qoobing.com/gomod/redis/sentinel"
)
type Config = sentinel.Config
var NewPool = redis.NewPool
var NewRedisPool = redis.NewPool
var NewSentinelPool = sentinel.NewPool
func NewPool(cfg Config) *redis.Pool {
if cfg.Master != "" {
return NewRedisPool(cfg)
} else if cfg.MasterName {
return NewSentinelPool(cfg)
}
panic("invalid config: Master & MasterName are both empty")
}