UNPKG

secondary-cache

Version:

support secondary cache mechanism. the first level cache is fixed memory-resident always with the highest priority. the second level is the LRU cache.

11 lines (6 loc) 158 B
// @sourceType: module import {Cache} from './cache' export * from './cache' export * from './lru-cache' export * from './lru-queue' export default Cache