Dead simple cluster based in-memory cache that allows the master process and the worker processes to share the same object cache.
Install
$ npm install simple-cluster-cache
Methods
get(key, callback)
- Gets the value from cache. Returns undefined if the value does not exist.key
: The unique cache object key or an array of keys.callback
: The optional callback function.
set(key, value, ttl, callback)
- Sets a cache object for the specified key.key
: The unique cache object key.value
: The cache object value.ttl
: The optional time to live on the cache object. (milliseconds)callback
: The optional callback function.
del(key, callback)
- Deletes a key from cache.key
: The unique cache object key or an array of keys.callback
: The optional callback function.
clear(callback)
- Clears the cache.callback
: The optional callback function.
Usage
cache;cache;// single getcache;// multi getcache;// single deletecache;// multi deletecache;// clears the entire cachecacheclear {console;};
Example
'use strict';var cluster = ;var cache = ;var express = ;var os = ;if clusterisMastervar cpus = oslength;for var i = 0; i < cpus; i++cluster;cluster;// preload some keys just to demonstrate it works from the master threadcacheclear;cache;cache;cache;cache;elsevar app = ;// gets the key from cacheapp;// sets the cache valueapp;// deletes the cache keyapp;// clears the cacheapp;app;