2018-08-15 07:01:38 +00:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2018-08-19 22:17:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-08-19 22:18:37 +00:00
|
|
|
"github.com/go-redis/redis"
|
2018-08-15 07:01:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
filer2.Stores = append(filer2.Stores, &RedisClusterStore{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type RedisClusterStore struct {
|
|
|
|
UniversalRedisStore
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *RedisClusterStore) GetName() string {
|
|
|
|
return "redis_cluster"
|
|
|
|
}
|
|
|
|
|
2018-08-19 22:17:55 +00:00
|
|
|
func (store *RedisClusterStore) Initialize(configuration util.Configuration) (err error) {
|
2018-08-15 07:01:38 +00:00
|
|
|
return store.initialize(
|
|
|
|
configuration.GetStringSlice("addresses"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *RedisClusterStore) initialize(addresses []string) (err error) {
|
|
|
|
store.Client = redis.NewClusterClient(&redis.ClusterOptions{
|
|
|
|
Addrs: addresses,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|