ditto/packages/ditto/caches/pipelineEncounters.ts
2025-02-15 14:21:05 -06:00

3 lines
116 B
TypeScript

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