graphql-yoga
Version:
<div align="center"><img src="./website/public/cover.png" width="720" /></div>
12 lines (11 loc) • 425 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.createLRUCache = void 0;
/* eslint-disable @typescript-eslint/ban-types */
const lru_cache_1 = require("lru-cache");
const DEFAULT_MAX = 1024;
const DEFAULT_TTL = 3600000;
function createLRUCache({ max = DEFAULT_MAX, ttl = DEFAULT_TTL, } = {}) {
return new lru_cache_1.LRUCache({ max, ttl });
}
exports.createLRUCache = createLRUCache;
;