@envelop/response-cache
Version:
- Skip the execution phase and reduce server load by caching execution results in-memory. - Customize cache entry time to live based on fields and types within the execution result. - Automatically invalidate the cache based on mutation selection sets. -
16 lines (15 loc) • 585 B
text/typescript
import type { Cache } from './cache.cjs';
export type BuildEntityId = (typename: string, id: number | string) => string;
export type InMemoryCacheParameter = {
/**
* Maximum amount of items in the cache. Defaults to `Infinity`.
*/
max?: number;
/**
* Customize how the cache entity id is built.
* By default the typename is concatenated with the id e.g. `User:1`
*/
buildEntityId?: BuildEntityId;
};
export declare const createInMemoryCache: (params?: InMemoryCacheParameter) => Cache;
export declare const defaultBuildEntityId: BuildEntityId;