This commit is contained in:
wangchuxiao
2023-03-24 18:53:49 +08:00
parent fa477c2d17
commit becbba877a
7 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -24,8 +24,8 @@ type metaCache interface {
GetPreDeleteKeys() []string
}
func NewMetaCacheRedis(rcClient *rockscache.Client) metaCache {
return &metaCacheRedis{rcClient: rcClient}
func NewMetaCacheRedis(rcClient *rockscache.Client, keys ...string) metaCache {
return &metaCacheRedis{rcClient: rcClient, keys: keys}
}
type metaCacheRedis struct {