mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
37 lines
784 B
Go
37 lines
784 B
Go
package redis
|
|
|
|
import (
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
"github.com/go-redis/redis"
|
|
)
|
|
|
|
func init() {
|
|
filer2.Stores = append(filer2.Stores, &RedisStore{})
|
|
}
|
|
|
|
type RedisStore struct {
|
|
UniversalRedisStore
|
|
}
|
|
|
|
func (store *RedisStore) GetName() string {
|
|
return "redis"
|
|
}
|
|
|
|
func (store *RedisStore) Initialize(configuration util.Configuration) (err error) {
|
|
return store.initialize(
|
|
configuration.GetString("address"),
|
|
configuration.GetString("password"),
|
|
configuration.GetInt("database"),
|
|
)
|
|
}
|
|
|
|
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
|
|
}
|