2020-04-12 09:50:41 +00:00
|
|
|
package redis2
|
|
|
|
|
|
|
|
import (
|
2020-09-01 07:21:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
2020-04-12 09:50:41 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
|
|
"github.com/go-redis/redis"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2020-09-01 07:21:19 +00:00
|
|
|
filer.Stores = append(filer.Stores, &RedisCluster2Store{})
|
2020-04-12 09:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type RedisCluster2Store struct {
|
|
|
|
UniversalRedis2Store
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *RedisCluster2Store) GetName() string {
|
|
|
|
return "redis_cluster2"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *RedisCluster2Store) Initialize(configuration util.Configuration, prefix string) (err error) {
|
|
|
|
|
|
|
|
configuration.SetDefault(prefix+"useReadOnly", true)
|
|
|
|
configuration.SetDefault(prefix+"routeByLatency", true)
|
|
|
|
|
|
|
|
return store.initialize(
|
|
|
|
configuration.GetStringSlice(prefix+"addresses"),
|
|
|
|
configuration.GetString(prefix+"password"),
|
|
|
|
configuration.GetBool(prefix+"useReadOnly"),
|
|
|
|
configuration.GetBool(prefix+"routeByLatency"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *RedisCluster2Store) initialize(addresses []string, password string, readOnly, routeByLatency bool) (err error) {
|
|
|
|
store.Client = redis.NewClusterClient(&redis.ClusterOptions{
|
|
|
|
Addrs: addresses,
|
|
|
|
Password: password,
|
|
|
|
ReadOnly: readOnly,
|
|
|
|
RouteByLatency: routeByLatency,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|