seaweedfs/weed/filer2/redis/redis_store.go

37 lines
784 B
Go
Raw Normal View History

2018-05-27 18:14:29 +00:00
package redis
import (
"github.com/chrislusf/seaweedfs/weed/filer2"
"github.com/chrislusf/seaweedfs/weed/util"
2018-08-19 22:18:37 +00:00
"github.com/go-redis/redis"
2018-05-27 18:14:29 +00:00
)
func init() {
filer2.Stores = append(filer2.Stores, &RedisStore{})
}
type RedisStore struct {
UniversalRedisStore
2018-05-27 18:14:29 +00:00
}
func (store *RedisStore) GetName() string {
return "redis"
}
func (store *RedisStore) Initialize(configuration util.Configuration) (err error) {
2018-05-27 18:14:29 +00:00
return store.initialize(
2018-06-17 20:01:57 +00:00
configuration.GetString("address"),
configuration.GetString("password"),
configuration.GetInt("database"),
2018-05-27 18:14:29 +00:00
)
}
func (store *RedisStore) initialize(hostPort string, password string, database int) (err error) {
store.Client = redis.NewClient(&redis.Options{
Addr: hostPort,
Password: password,
DB: database,
})
return
}