2018-05-27 18:14:29 +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-05-27 18:14:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
filer2.Stores = append(filer2.Stores, &RedisStore{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type RedisStore struct {
|
2018-08-15 07:01:38 +00:00
|
|
|
UniversalRedisStore
|
2018-05-27 18:14:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (store *RedisStore) GetName() string {
|
|
|
|
return "redis"
|
|
|
|
}
|
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
func (store *RedisStore) Initialize(configuration util.Configuration, prefix string) (err error) {
|
2018-05-27 18:14:29 +00:00
|
|
|
return store.initialize(
|
2020-01-29 17:09:55 +00:00
|
|
|
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
|
|
|
|
}
|