You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

42 lines
779 B

var Lru = require("lru-cache");
var memory_store = function (args) {
args = args || {};
var self = {};
self.name = 'memory';
var ttl = args.ttl;
var lru_opts = {
max: args.max || 500,
maxAge: ttl ? ttl * 1000 : null
};
var lru_cache = new Lru(lru_opts);
self.set = function (key, value, cb) {
lru_cache.set(key, value);
if (cb) {
cb(null);
}
};
self.get = function (key, cb) {
cb(null, lru_cache.get(key));
};
self.del = function (key, cb) {
lru_cache.del(key);
if (cb) {
cb(null);
}
};
return self;
};
var methods = {
create: function (args) {
return memory_store(args);
}
};
module.exports = methods;