This package has been deprecated

Author message:

No longer maintained.

lru-list

1.3.3 • Public • Published

lru-list

Storage-agnostic LRU list with async/multi-key operations.

Build Status

Example

var list = require('lru-list').create()
 
list.setOption('limit', 50)
    .setOption('set', function(pairs, cb) {
      // Write to storage ...
      cb(/* or Error() */);
    })
    .setOption('get', function(keys, cb) {
      // Read from storage ...
      cb(/* or Error() */, pairs);
    })
    .setOption('del', function(keys, cb) {
      // Write to storage ...
      cb(/* or Error() */);
    });
 
list.set(key, val, function setDone(err) { /* ... */ });
list.set(pairs, function setDone(err) { /* ... */ });
list.shift(function shiftDone(err) { /* ... */ });
list.get(keys, function getDone(err, val) { /* ... */ });
list.del(keys, function delDone(err) { /* ... */ });

See bindle for an example of using lru-list to handle QUOTA_EXCEEDED_ERR errors from localStorage.

Installation

NPM

npm install lru-list

component

component install codeactual/lru-list

API

Documentation

License

MIT

Based on js-lru (MIT).

Tests

Node

npm test

Browser via Karma

  • npm install karma
  • karma start
  • Browse http://localhost:9876/
  • make build && karma run

Readme

Keywords

none

Package Sidebar

Install

npm i lru-list

Weekly Downloads

1

Version

1.3.3

License

MIT

Last publish

Collaborators

  • codeactual