glo-cache
v1.0.2
Published
Global cache for express or koa.
Downloads
5
Maintainers
Readme
glo-cache
A tool for glo-cache.
Install
npm i glo-cache --save
//or
yarn add glo-cache
Example
const cache = require("glo-cache");
let i=0;
setInterval(()=>{
i++;
cache.set(null,i);
console.log(i,cache.getAll());
},1000);
APIs
cache.get
cache.set
cache.clear
cache.getAll
cache.del