Files
NotionNext/lib/cache/memory_cache.js
tangly1024 6dc1794bdf feature:
缓存优化
2021-12-16 22:01:59 +08:00

10 lines
262 B
JavaScript

import cache from 'memory-cache'
export async function getCacheFromMemory (key, options) { // url为缓存标识
return cache.get(key)
}
export async function setCacheToMemory (key, data) { // url为缓存标识
await cache.put(key, data, 5 * 60 * 1000)
}