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 })