lrujs-cache
v2.4.8
Published
Least Recently Used Cache
Downloads
15
Readme
lrujs-cache
Least Recently Used (LRU) Caching Technique
Design
Uses doubly-linked list for low complexity shuffling
head
contains most recently usedtail
contains least recently usedkeystore for node lookup to reduce complexity
Size to restrict the usage of memory
Removes the expired node in the cache when limit exceeds size
Removes the least recently accessed node from the cache when limit exceeds
length
returns the number of live nodes in the cacheRegister for node key events and handle the application logic
API
set
Sets the value against the key in the cache.
Removes the expired node in the cache if timeToLive
had reached zero.
Removes the least recently used node in the cache if limit is reached.
Overides the value
, timeToIdle
, timeToLive
if the key already exists.
Parameters
key
identifier for the value to be cachedvalue
actual value to be cachedtimeToIdle
in (ms) value will get reset if it is not accessed within the timeframetimeToLive
in (ms) key will get reset after the timeframe
get
Fetches the value stored against the key in the cache. Updates the recently used list.
timeToIdle
will get reset when the value is accessed.
Parameters
key
identifier for the value stored in the cache
find
Identifies all the value stored in the cache against the key pattern and return the result array. Updates the recently used list.
timeToIdle
will get reset when the value is accessed.
Parameters
pattern
matches the identifier for the value stored in the cache
Example
lru.find('*keys*')
display all key contains the stringkeys
clear
Clear all values in the cache
Parameters
keys
one key (or) array of keys to be cleared (or) key pattern to be cleared
Example
lru.clear('*keys*')
clears all key contains the stringkeys
limit
Sets the maximum size limit for the cache
Parameters
size
number of keys that can be stored in the cache
length
returns the current length of the cache
removes the expired node from the cache
hasKey
returns true if the key is already taken in the cache
returns false if the key is not taken before
isLeast
- returns true if the key is least in the cache
isRecent
- returns true if the key is recent in the cache
keys
- returns all keys in the cache
events
returns all LRU key events
LRU key events
{ "CREATED" : "created", "UPDATED" : "updated", "DELETED" : "deleted", "MISSED" : "missed", "HIT" : "hit" }
registerEventCallback
Registers the callback to listen to LRU key events
Parameters
callback
function to listen to LRU key events
deregisterEventCallback
De-registers the LRU key events listener
Usage
// To access LRU Cache
import lruCache from 'lrujs-cache';
// To instantiate your own cache
var lru = new lruCache('lru');
// To bust the cache
lru.clear();
// To restrict the cache size to 5
lru.limit(5);
// To set the value in cache => Sets 1 into cache
lru.set({
key: 'one',
value: 1
});
// To set the value in cache with timeToIdle (ms)
lru.set({
key: 'two',
// Value will get reset after timeToIdle (ms)
value: 2,
// Clock will get reset if value is accessed with timeToIdle (ms)
timeToIdle: 10000
});
// To set the value in cache with timeToLive (ms)
lru.set({
key: 'three',
// Value will be dropped after timeToLive (ms)
value: 3,
// Clock will get reset only if timeToLive (ms) is updated
timeToLive: 10000
});
// To get the value from cache => Returns 1 from cache
lru.get('one');
// To confirm if the key is already taken in the cache => Returns true
lru.hasKey('one')
// To clear the key from cache
lru.clear('one');
// To clear multiple keys from cache
lru.clear(['one', 'two']);
/*
* Sample Output - To listen to LRU Key Events
* LRU Event Triggered => created : {"key":"one","oldValue":null,"newValue":"one"}
* LRU Event Triggered => updated : {"key":"one","oldValue":"one","newValue":"1"}
* LRU Event Triggered => deleted : {"key":"one","newValue":"1"}
* LRU Event Triggered => missed : {"key":"one"}
* LRU Event Triggered => hit : {"key":"one"}
*/
lru.registerEventCallback(function(evt, payload) {
console.log(`LRU Event Triggered => ${evt} : ${JSON.stringify(payload)}`);
});
Installation
yarn add lrujs-cache