文件名称:tianma-cache:天马缓存中间件
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-08 14:28:38
JavaScript
tianma-cache 将后续模块对GET请求的200响应缓存起来。在缓存有效期内,如果再次有URL相同的GET请求到达,直接返回缓存内容。 安装 $ npm install tianma-cache 使用 缓存有效期默认为1800秒。 var tianma = require('tianma'); tianma(8080) .cache() .use(function *(next) { this.response.data(Math.random()); }); 上例的执行结果如下: $ curl http://127.0.0.1:8080/x.js 0.9272267003543675 $ curl http://127.0.0.1:8080/x.js # 同样的GET请求,命中缓存。 0.9272267003543675 $ cu
【文件预览】:
tianma-cache-master
----.gitignore(72B)
----README.md(1020B)
----test()
--------cache-spec.js(3KB)
----HISTORY.md(55B)
----package.json(679B)
----index.js(2KB)
----.npmignore(12B)
----.travis.yml(41B)
----.editorconfig(174B)