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"
|
|
|
|
}
|
|
|
|
|
2018-08-19 22:17:55 +00:00
|
|
|
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
|
|
|
|
}
|