aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/redis_lua/redis_store.go
blob: 4f6354e96b287fc2201cda3ed326e1b4c33d8fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package redis_lua

import (
	"github.com/redis/go-redis/v9"
	"github.com/seaweedfs/seaweedfs/weed/filer"
	"github.com/seaweedfs/seaweedfs/weed/util"
)

func init() {
	filer.Stores = append(filer.Stores, &RedisLuaStore{})
}

type RedisLuaStore struct {
	UniversalRedisLuaStore
}

func (store *RedisLuaStore) GetName() string {
	return "redis_lua"
}

func (store *RedisLuaStore) Initialize(configuration util.Configuration, prefix string) (err error) {
	return store.initialize(
		configuration.GetString(prefix+"address"),
		configuration.GetString(prefix+"username"),
		configuration.GetString(prefix+"password"),
		configuration.GetInt(prefix+"database"),
		configuration.GetString(prefix+"keyPrefix"),
		configuration.GetStringSlice(prefix+"superLargeDirectories"),
	)
}

func (store *RedisLuaStore) initialize(hostPort string, username string, password string, database int, keyPrefix string, superLargeDirectories []string) (err error) {
	store.Client = redis.NewClient(&redis.Options{
		Addr:     hostPort,
		Username: username,
		Password: password,
		DB:       database,
	})
	store.keyPrefix = keyPrefix
	store.loadSuperLargeDirectories(superLargeDirectories)
	return
}