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