mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
33 lines
699 B
Go
33 lines
699 B
Go
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
|
|
}
|