const cache: CacheBase;
// 清理
await cache.flush('键');
// 获取
const res = await cache.get('键', async () => {
// 加载数据
return [];
});
// res = []
const res = await cache.getModifyOn('键');
// res = 缓存修改时间
- MemoryCache - 内存缓存
const nowTime: NowTimeBase;
// 检测缓存是否变更的间隔区间, 默认: [5, 60]
const checkIntervalRange: [number, number];
const cache = new MemoryCache(nowTime, checkIntervalRange);