node lru cache 源码
lru缓存 删除最近使用最少的项目的缓存对象。 安装: npm install lru - cache -- save 用法: var LRU = require ( "lru-cache" ) , options = { max : 500 , length : function ( n , key ) { return n * 2 + key . length } , dispose : function ( key , n ) { n . close ( ) } , maxAge : 1000 * 60 * 60 } , cache = new LRU ( options ) , otherCache = new LRU ( 50 ) // sets just the max size
文件列表
node-lru-cache-master.zip
(预估有个13文件)
node-lru-cache-master
.gitignore
46B
package.json
705B
package-lock.json
112KB
CONTRIBUTORS
524B
.travis.yml
149B
CONTRIBUTING.md
78B
LICENSE
765B
index.js
8KB
README.md
6KB
暂无评论