1.0.1 • Published 8 years ago

tiny-lru-cache v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

NPM version Build Status Dependency Status

Simple LRU cache. put and get.

Suitable for use in browsers and Node.js.

Install

$ npm install --save tiny-lru-cache

Usage

var LRUCache = require('tiny-lru-cache');

var maxSize = 100;
var cache = new LRUCache(maxSize);
cache.put('key', 'value');
cache.get('key'); // returns 'value'

cache.flush(); // Empties the cache

LRU Eviction Policy

Once the cache reaches its maximum size, the least recently used (LRU) item is evicted.

Development

npm install
npm test

License

MIT © Andy Hume