项目作者: joaquimserafim

项目描述 :
a simple lru cache
高级语言: JavaScript
项目地址: git://github.com/joaquimserafim/simple.cache.git
创建时间: 2017-05-16T21:38:24Z
项目社区:https://github.com/joaquimserafim/simple.cache

开源协议:ISC License

下载


simple.cache

a simple lru cache


Build StatusCoverage StatusISC LicenseNodeJS

JavaScript Style Guide

api

const SimpleCache = require('simple.cache')

SimpleCache(max) max integer, default to 1000

methods

  • set(key, value) void, set a new entry and value
  • get(key) string or undefined, gets the entry’s value from a given key
  • has(key) boolean, check if a given key already exists
  • remove(key) void, remove a given key from the first cache
  • size() integer, get the size of the cache
  • clear() void, clear cache
  • keys() array, returns the keys from the cache
  • dump() object, retrieves the entire cache

example

  1. const SimpleCache = require('simple.cache')
  2. const myCache = SimpleCache()
  3. myCache.set('foo', 123)
  4. myCache.set('bar', 456)
  5. myCache.get('bar')// returns 456
  6. myCache.remove('foo')
  7. myCache.size()// should return 1
  8. myCache.clear()// both caches are reset

props to Dominic Tarr for the amazing LRU algorithm

ISC License (ISC)