ditto/src/caches/pipelineEncounters.ts
2025-01-21 17:31:55 -06:00

3 lines
116 B
TypeScript

import { LRUCache } from 'lru-cache';
export const pipelineEncounters = new LRUCache<string, true>({ max: 5000 });