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.
32 lines
699 B
32 lines
699 B
package redis
|
|
|
|
import (
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
"github.com/go-redis/redis"
|
|
)
|
|
|
|
func init() {
|
|
filer2.Stores = append(filer2.Stores, &RedisClusterStore{})
|
|
}
|
|
|
|
type RedisClusterStore struct {
|
|
UniversalRedisStore
|
|
}
|
|
|
|
func (store *RedisClusterStore) GetName() string {
|
|
return "redis_cluster"
|
|
}
|
|
|
|
func (store *RedisClusterStore) Initialize(configuration util.Configuration) (err error) {
|
|
return store.initialize(
|
|
configuration.GetStringSlice("addresses"),
|
|
)
|
|
}
|
|
|
|
func (store *RedisClusterStore) initialize(addresses []string) (err error) {
|
|
store.Client = redis.NewClusterClient(&redis.ClusterOptions{
|
|
Addrs: addresses,
|
|
})
|
|
return
|
|
}
|