Files
NotionNext/lib/cache/memory_cache.js
tangly1024 f6f0e9d41a feature:
广告、缓存
2021-12-17 21:21:44 +08:00

13 lines
298 B
JavaScript

import cache from 'memory-cache'
import BLOG from 'blog.config'
const cacheTime = BLOG.isProd ? 60 : 60 * 60
export async function getCacheFromMemory (key, options) {
return cache.get(key)
}
export async function setCacheToMemory (key, data) {
await cache.put(key, data, cacheTime * 1000)
}