vs-cache

0.0.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i vs-cache

Weekly Downloads

0

Version

0.0.0

License

MIT

Last publish

Collaborators

  • d_vova