Files
NotionNext/lib/cache/memory_cache.js
tangly1024 dfc0f645d4 Code🤣
2021-09-27 09:33:21 +08:00

10 lines
258 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, 60 * 1000)
}