// 运行与服务端的js// node.js lru-cacheimport LRU from 'lru-cache'const lruCache = LRU({ // 缓存队列长度 max: 2000, // 缓存有效期 maxAge: 60000})export const cache = { get: function (key) { let result = lruCache.get(key) if (result) { return JSON.parse(result) } return null }, set: function (key, value) { if (value) { lruCache.set(key, JSON.stringify(value)) return true } return false }}