npm.io
0.0.2 • Published 14 years ago

ttl-lru-cache

Licence
Version
0.0.2
Deps
1
Vulns
0
Weekly
0
Stars
15

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