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"
|
2021-01-11 10:30:19 +00:00
|
|
|
"github.com/go-redis/redis/v8"
|
2020-04-12 09:50:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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) {
|
|
|
|
|
2021-01-08 09:12:44 +00:00
|
|
|
configuration.SetDefault(prefix+"useReadOnly", false)
|
|
|
|
configuration.SetDefault(prefix+"routeByLatency", false)
|
2020-04-12 09:50:41 +00:00
|
|
|
|
|
|
|
return store.initialize(
|
|
|
|
configuration.GetStringSlice(prefix+"addresses"),
|
|
|
|
configuration.GetString(prefix+"password"),
|
|
|
|
configuration.GetBool(prefix+"useReadOnly"),
|
|
|
|
configuration.GetBool(prefix+"routeByLatency"),
|
2020-12-22 10:26:05 +00:00
|
|
|
configuration.GetStringSlice(prefix+"superLargeDirectories"),
|
2020-04-12 09:50:41 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-12-22 10:26:05 +00:00
|
|
|
func (store *RedisCluster2Store) initialize(addresses []string, password string, readOnly, routeByLatency bool, superLargeDirectories []string) (err error) {
|
2020-04-12 09:50:41 +00:00
|
|
|
store.Client = redis.NewClusterClient(&redis.ClusterOptions{
|
|
|
|
Addrs: addresses,
|
|
|
|
Password: password,
|
|
|
|
ReadOnly: readOnly,
|
|
|
|
RouteByLatency: routeByLatency,
|
|
|
|
})
|
2020-12-22 10:26:05 +00:00
|
|
|
store.loadSuperLargeDirectories(superLargeDirectories)
|
2020-04-12 09:50:41 +00:00
|
|
|
return
|
|
|
|
}
|