Files
certd/packages/core/basic/src/utils/util.cache.ts

9 lines
141 B
TypeScript
Raw Normal View History

2024-09-27 02:15:41 +08:00
// LRUCache
2024-11-06 01:29:13 +08:00
import { LRUCache } from 'lru-cache';
2024-09-27 02:15:41 +08:00
export const cache = new LRUCache<string, any>({
max: 1000,
ttl: 1000 * 60 * 10,
});