nodex-cache
v1.0.1
Published
A simple node js cache manager
Downloads
2
Maintainers
Readme
nodex-cache
A simple caching module for node js that has
set
,get
anddelete
methods. Keys can have a timeout (ttl) after which they expire and are deleted from the cache.
Installation
npm i --save nodex-cache
Usage
const node_cache = require('nodex-cache');
let { cache, expire } = node_cache;
Simple Cache
const simpleCache = cache();
simpleCache.set('a', 1)
simpleCache.set('b', 3)
console.log(simpleCache.remove('b')) // 3
console.log(simpleCache.get('a')) // 1
console.log(simpleCache.remove('b')) // undefined
Expiring Cache
const expirationHandler = (key, value) => {
console.log(`expired ${key}: ${value}`) // expired b: 2
}
const expiringCache = expire(cache(), expirationHandler)
expiringCache.set('a', 1, 1000)
expiringCache.set('b', 2) //default expiry is 1000
expiringCache.set('c', 3) //default expiry is 1000
console.log(expiringCache.remove('b')) // 2
console.log(expiringCache.get('a')) // 1
setTimeout(() => {
console.log(expiringCache.get('a')) // undefined
}, 1200)
License
MIT © Liju Kuriakose