A lightweight, eviction-conscious GraphQL caching library.
- Support for LRU, LFU + MFU eviction
- Constant time complexity across all operations
npm install qlache
const QLache = require('qlache');
const cache = new QLache('example.api/gql', 'LRU', 100);
cache.query