node-soft-cache:node.js 上的软定时缓存

时间:2024-07-18 05:15:58
【文件属性】:

文件名称:node-soft-cache:node.js 上的软定时缓存

文件大小:5KB

文件格式:ZIP

更新时间:2024-07-18 05:15:58

JavaScript

节点软缓存 这个库是一个用于在 node.js 中缓存的实用程序。 它源于 JavaScript 中不仅仅需要var cache = {}东西。 此缓存表现为键值对,允许在放入缓存的键/值中设置过期超时。 应用程序接口 缓存构造函数接受两个可选参数: 缓存的大小,表示其中允许的元素数量。 默认值为1000个插槽。 将用于使缓存过期的超时值(以毫秒为单位)。 默认值为3600000毫秒(一小时)。 设置新缓存 要构建缓存,您只需要实例化一个new SoftCache() 。 var SoftCache = require("soft-cache"), softCache = new SoftCache(), // no arguments === default values 或者,如果您更喜欢指定大小和自定义超时(以毫秒为单位): softCache = new


【文件预览】:
node-soft-cache-master
----.travis.yml(37B)
----package.json(1KB)
----test()
--------soft-cache-test.js(3KB)
----LICENSE(1KB)
----src()
--------soft-cache.js(2KB)
----.gitignore(587B)
----README.md(2KB)

网友评论