UNPKG

graphql-yoga

Version:

[![GraphQL Conf 2023](/GraphQLConf-2023-Banner.png)](https://graphql.org/conf/)

8 lines (7 loc) 267 B
/* eslint-disable @typescript-eslint/ban-types */ import { LRUCache as LRU } from 'lru-cache'; const DEFAULT_MAX = 1024; const DEFAULT_TTL = 3600000; export function createLRUCache({ max = DEFAULT_MAX, ttl = DEFAULT_TTL, } = {}) { return new LRU({ max, ttl }); }