mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 11:19:14 +08:00
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
|
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
|
||
|
})
|