摘要: class LCache{ constructor(load,exec){ this.load=load;//加载函数 this.exec=exec;//执行函数 this.maxLen=100;//最大缓存数 this.nearTimeMap={};//最近访问时间 this.resMap={}; 阅读全文
posted @ 2020-03-20 18:37 无工时代 阅读(289) 评论(0) 推荐(0) 编辑