@envelop/parser-cache
TypeScript icon, indicating that this package has built-in type declarations

7.0.0 • Public • Published

@envelop/parser-cache

This 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).

Getting Started

yarn add @envelop/parser-cache

Usage Example

import { execute, parse, specifiedRules, subscribe, validate } from 'graphql'
import { envelop, useEngine } from '@envelop/core'
import { useParserCache } from '@envelop/parser-cache'

const getEnveloped = envelop({
  plugins: [
    useEngine({ parse, validate, specifiedRules, execute, subscribe }),
    // ... other plugins ...
    useParserCache({
      // options goes here
    })
  ]
})

API Reference

documentCache

Set this to pass in a cache instance for caching documents. By default a new LRU cache is created using default max and ttl.

errorCache

Set this to pass in a cache instance for caching errors. By default a new LRU cache is created using default max and ttl.

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @envelop/parser-cache

    Weekly Downloads

    38,637

    Version

    7.0.0

    License

    MIT

    Unpacked Size

    7.27 kB

    Total Files

    8

    Last publish

    Collaborators

    • dotansimha