ttl-lru-cache

0.0.2 • Public • Published

ttl-lru-cache - A fast in memory cache with TTL and LRU support

build status

Installation

  npm install ttl-lru-cache

Usage

 
var cache = require('ttl-lru-cache')({ maxLength: 100 });
 
cache.set('a', 'Hello');
 
var a = cache.get('a');
 
// a = 'Hello'
 
// TTL Example
cache.set('b', 'Hello', 1000); // Add TTL in ms
var b = cache.get('b');
// b = 'Hello'
 
setTimeout(function() {
  var b = cache.get('b');
// b = undefined
}, 2000);
 

Benchmark against lru-cache

  npm install
  make bench

Credits

Paul Serby follow me on twitter @serby

Licence

Licenced under the New BSD License

/ttl-lru-cache/

    Package Sidebar

    Install

    npm i ttl-lru-cache

    Weekly Downloads

    172

    Version

    0.0.2

    License

    none

    Last publish

    Collaborators

    • serby