pcache
v0.2.1
Published
simple node caching module
Downloads
8
Maintainers
Readme
pcache
simple caching module for nodejs
install
npm install pcache
usage
var cache = import('pcache');
# init new cache with caching time of 60s
var myCache = new cache(60);
setter
myCache.set('foo', 'bar');
# you can also set a individual caching time
myCache.set('foo', 'bar', 3600);
getter
myCache.get('foo');
delete
myCache.del('foo');
get all keys
myCache.keys();
clear complete cache
myCache.clearAll();