Files
NotionNext/lib/cache/memory_cache.js
2021-12-17 13:49:17 +08:00

10 lines
233 B
JavaScript

import cache from 'memory-cache'
export async function getCacheFromMemory (key, options) {
return cache.get(key)
}
export async function setCacheToMemory (key, data) {
await cache.put(key, data, 30 * 60 * 1000) // 30 minutes
}