seaweedfs/weed/filer/redis/redis_store.go

37 lines
817 B
Go
Raw Normal View History

2018-05-27 18:14:29 +00:00
package redis
import (
2020-09-01 07:21:19 +00:00
"github.com/chrislusf/seaweedfs/weed/filer"
"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() {
2020-09-01 07:21:19 +00:00
filer.Stores = append(filer.Stores, &RedisStore{})
2018-05-27 18:14:29 +00:00
}
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, prefix string) (err error) {
2018-05-27 18:14:29 +00:00
return store.initialize(
configuration.GetString(prefix+"address"),
configuration.GetString(prefix+"password"),
configuration.GetInt(prefix+"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
}