folsom
v0.1.0
Published
Searchable in-memory object cache
Downloads
6
Readme
folsom
Very simple in-memory cache(key|value) for storing and retrieving data
example
var folsom = require('folsom');
// Add some data
folsom('A Boy Named Sue', {
title: 'A Boy Named Sue',
released: 'July 26, 1969',
recorded: 'February 24, 1969'
});
// Get some data
var song = folsom('A Boy Named Sue');
install
With npm do:
npm install folsom
license
MIT