egg-lru
egg-lru copied to clipboard
egg lru-cache plugin
我看都是5年前的提交,请问还能用吗
```cache.ts import { provide, inject, Context } from '@ali/midway' @provide('cacheService') export class CacheService{ @inject() ctx: Context; get(key: string) { return this.ctx.app.lru.get(key) } set(key: string, value) { return this.ctx.app.lru.set(key, value) }...
##### Checklist - [x] `npm test` passes - [x] tests and/or benchmarks are included - [x] documentation is changed or added - [x] commit message follows commit guidelines ##### Affected...
当前版本 `[email protected]`,仓库里面依赖的是 `4.1.1` https://github.com/isaacs/node-lru-cache/blob/main/CHANGELOG.md#1020