关于前端:nextjs实现服务端缓存

42次阅读

共计 287 个字符,预计需要花费 1 分钟才能阅读完成。

nextjs 应用 memory-cache 插件实现服务端缓存

import cacheData from 'memory-cache';

async function putCache(url, options) {  // url 为缓存标识
    const value = cacheData.get(url); // 获取缓存
    if (value) {
     // 如果有缓存 
      *codeing*
    } else {
        const hours = 24;  
      // 申请接口 获取 data
        cacheData.put(url, data, hours * 1000 * 60 * 60); // url 为缓存标识   data 为数据  第三参数为以毫秒为单位的工夫
        return data;
    }
}

正文完
 0