pcache

0.2.1 • Public • Published

pcache


Build Status devDependency Status npm

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();

Package Sidebar

Install

npm i pcache

Weekly Downloads

0

Version

0.2.1

License

BSD-2-Clause

Unpacked Size

5.76 kB

Total Files

6

Last publish

Collaborators

  • pfitzer