assoc-cache

0.0.3 • Public • Published

assoc-cache

A simple local memory cache via an associative array support .set() .get()

Installation

npm install assoc-cache

Usage

var cache = require('assoc-cache');
 
// usage
cache.set('foo', 'bar');
cache.get('foo', function(value){console.log(value)});
 

Which should print

bar

API

set function(key, value)

  • stores a value

get function(key, callback)

  • callback value or undefined

Package Sidebar

Install

npm i assoc-cache

Weekly Downloads

2

Version

0.0.3

License

MIT

Last publish

Collaborators

  • dirtv