Fix key eviction
This commit is contained in:
parent
090fdb58e0
commit
eae5223fe3
|
@ -165,7 +165,8 @@ class RedisWrapper {
|
|||
}
|
||||
|
||||
async keys(pattern) {
|
||||
return CLIENT.keys(pattern)
|
||||
const db = this._db
|
||||
return CLIENT.keys(addDbPrefix(db, pattern))
|
||||
}
|
||||
|
||||
async get(key) {
|
||||
|
|
Loading…
Reference in New Issue