newsnow/server/cache.ts

10 lines
252 B
TypeScript
Raw Normal View History

2024-10-03 13:16:14 +08:00
import { FlatCache } from "flat-cache"
// init
export const cache = new FlatCache({
ttl: 60 * 60 * 1000, // 1 hour
lruSize: 10000, // 10,000 items
expirationInterval: 5 * 1000 * 60, // 5 minutes
persistInterval: 5 * 1000 * 60, // 5 minutes
})