2018-05-28 02:14:29 +08:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
2020-09-01 15:21:19 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
2018-08-20 06:17:55 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-08-20 06:18:37 +08:00
|
|
|
"github.com/go-redis/redis"
|
2018-05-28 02:14:29 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2020-09-01 15:21:19 +08:00
|
|
|
filer.Stores = append(filer.Stores, &RedisStore{})
|
2018-05-28 02:14:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type RedisStore struct {
|
2018-08-15 15:01:38 +08:00
|
|
|
UniversalRedisStore
|
2018-05-28 02:14:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (store *RedisStore) GetName() string {
|
|
|
|
return "redis"
|
|
|
|
}
|
|
|
|
|
2020-01-30 01:09:55 +08:00
|
|
|
func (store *RedisStore) Initialize(configuration util.Configuration, prefix string) (err error) {
|
2018-05-28 02:14:29 +08:00
|
|
|
return store.initialize(
|
2020-01-30 01:09:55 +08:00
|
|
|
configuration.GetString(prefix+"address"),
|
|
|
|
configuration.GetString(prefix+"password"),
|
|
|
|
configuration.GetInt(prefix+"database"),
|
2018-05-28 02:14:29 +08: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
|
|
|
|
}
|