mirror of
https://github.com/certd/certd.git
synced 2026-04-14 04:20:52 +08:00
9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
// LRUCache
|
|
|
|
import { LRUCache } from "lru-cache";
|
|
|
|
export const cache = new LRUCache<string, any>({
|
|
max: 1000,
|
|
ttl: 1000 * 60 * 10,
|
|
});
|