$ cnpm install @envelop/parser-cache
@envelop/parser-cacheThis plugins adds simple LRU caching to your parse, to improve performance by caching the parsed result.
This plugins improves performance of parsing by ~60% (based on benchmarks).
yarn add @envelop/parser-cache
import { envelop } from '@envelop/core';
import { useParserCache } from '@envelop/parser-cache';
const getEnveloped = envelop({
plugins: [
// ... other plugins ...
useParserCache({
// options goes here
}),
],
});
documentCacheSet this to pass in a cache instance for caching documents. By default a new LRU cache is created using default max and ttl.
errorCacheSet this to pass in a cache instance for caching errors. By default a new LRU cache is created using default max and ttl.
Copyright 2013 - present © cnpmjs.org | Home |