liftcache
v1.0.0
Published
Simple caching system on top on Level database
Downloads
2
Readme
lift cache
var agent = function(resource,done) {
var err = null;
var val = 'value_to_save';
done(err, val);
});
var collection = liftcache({
path: '../cache',
agent: agent
});
var lift = collection.lift;
// usage
lift('somekey',function(err,val) console.log(val); });