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"
|
2018-08-19 22:17:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2021-01-11 10:30:19 +00:00
|
|
|
"github.com/go-redis/redis/v8"
|
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 {
|
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
|
|
|
|
}
|