0.0.0 • Published 12 years ago

vs-cache v0.0.0

Weekly downloads
3
License
-
Repository
github
Last release
12 years ago

vs-cache

Limit the number of calls to a function by caching the results of execution

Installation

npm install vs-cache

Quick Start

First, define an asynchronous function that should be cached:

var task = function task ( callback ) {
  var execute = function ( ) {
    callback(null, new Date().getTime());
  }
  
  var timeout = 10 * Math.random() | 0;
  
  setTimeout(execute, timeout);
}

Second, use cache to retrieve the result of running the task

var cache = require('vs-cache');

var cachedTask = cache.create(task, 50);

cachedTask.retrieve(function callback ( error, value ) {
  console.log('retrieved result: ' + String(error || value));
});

License

MIT