You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package redis3
import ( "time"
"github.com/redis/go-redis/v9" "github.com/go-redsync/redsync/v4" "github.com/go-redsync/redsync/v4/redis/goredis/v9" "github.com/seaweedfs/seaweedfs/weed/filer" "github.com/seaweedfs/seaweedfs/weed/util" )
func init() { filer.Stores = append(filer.Stores, &Redis3SentinelStore{}) }
type Redis3SentinelStore struct { UniversalRedis3Store }
func (store *Redis3SentinelStore) GetName() string { return "redis3_sentinel" }
func (store *Redis3SentinelStore) Initialize(configuration util.Configuration, prefix string) (err error) { return store.initialize( configuration.GetStringSlice(prefix+"addresses"), configuration.GetString(prefix+"masterName"), configuration.GetString(prefix+"username"), configuration.GetString(prefix+"password"), configuration.GetInt(prefix+"database"), ) }
func (store *Redis3SentinelStore) initialize(addresses []string, masterName string, username string, password string, database int) (err error) { store.Client = redis.NewFailoverClient(&redis.FailoverOptions{ MasterName: masterName, SentinelAddrs: addresses, Username: username, Password: password, DB: database, MinRetryBackoff: time.Millisecond * 100, MaxRetryBackoff: time.Minute * 1, ReadTimeout: time.Second * 30, WriteTimeout: time.Second * 5, }) store.redsync = redsync.New(goredis.NewPool(store.Client)) return }
|