Merged in feat/redis-fix (pull request #3207)
Feat/redis fix * feat(redis): delete multiple keys in one partition scan * fix(BOOK-603): make it possible to do multiple deletes in redis at once using one partition scan Approved-by: Linus Flood
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { cacheOrGet } from "./cacheOrGet"
|
||||
import { deleteKey } from "./deleteKey"
|
||||
import { deleteKeys } from "./deleteKeys"
|
||||
import { get } from "./get"
|
||||
import { set } from "./set"
|
||||
|
||||
@@ -12,5 +13,6 @@ export async function createDistributedCache(): Promise<DataCache> {
|
||||
set,
|
||||
cacheOrGet,
|
||||
deleteKey,
|
||||
deleteKeys,
|
||||
} satisfies DataCache
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user