aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/redis/redis_cluster_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/filer/redis/redis_cluster_store.go')
-rw-r--r--weed/filer/redis/redis_cluster_store.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/weed/filer/redis/redis_cluster_store.go b/weed/filer/redis/redis_cluster_store.go
new file mode 100644
index 000000000..8af94ee55
--- /dev/null
+++ b/weed/filer/redis/redis_cluster_store.go
@@ -0,0 +1,42 @@
+package redis
+
+import (
+ "github.com/chrislusf/seaweedfs/weed/filer"
+ "github.com/chrislusf/seaweedfs/weed/util"
+ "github.com/go-redis/redis"
+)
+
+func init() {
+ filer.Stores = append(filer.Stores, &RedisClusterStore{})
+}
+
+type RedisClusterStore struct {
+ UniversalRedisStore
+}
+
+func (store *RedisClusterStore) GetName() string {
+ return "redis_cluster"
+}
+
+func (store *RedisClusterStore) 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 *RedisClusterStore) 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
+}