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
12 lines
371 B
TypeScript
12 lines
371 B
TypeScript
import { cacheOrGet } from "./cacheOrGet"
|
|
import { deleteKey } from "./deleteKey"
|
|
import { deleteKeys } from "./deleteKeys"
|
|
import { get } from "./get"
|
|
import { set } from "./set"
|
|
|
|
import type { DataCache } from "../../Cache"
|
|
|
|
export async function createInMemoryCache(): Promise<DataCache> {
|
|
return { type: "in-memory", cacheOrGet, deleteKey, get, set, deleteKeys }
|
|
}
|