mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
10 lines
227 B
JavaScript
10 lines
227 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, 60 * 1000) // 1 minutes
|
|
}
|