标准化缓存 此规范化的缓存提供以下功能: 数据(反规范化) 数据订阅 资料验证 数据无效 数据到期 计算字段 乐观更新 垃圾收集 该库压缩后约为5 KB。 设置 安装: npm install --save normalized-cache 用法 import { Cache , schema } from "normalized-cache" ; const Author = schema . object ( { name : "Author" , } ) ; const Post = schema . object ( { name : "Post" , fields : { author : Author , } , } ) ; const cache = new Cache ( { types : [ Post ] , } ) ; cache .