0.0.2 • Published 11 years ago

nodecache v0.0.2

Weekly downloads
23
License
-
Repository
github
Last release
11 years ago

Simple and powerful Cache Module for NodeJS.

Install with:

npm install nodecache

Usage

Save data in memory, the second parameter of cache.save only be called if it is not currently in memory.

    var cache = require('nodecache');

    var myFunction = function () {
        ...
        return 'Some Data';
    };
    var myData = cache.save('myData', myFunction); // This will call myFunction() and return 'Some Data'.
    var myCachedData = cache.save('myData', myFunction); // This will return 'Some Data' without call myFunction().

Persist data using Redis:

    var cache = require('nodecache');

    var myFunction = function () {
        ...
        return 'Some Data';
    };
    cache.persist('myData', myFunction, function (err, reply) {
        console.log(reply); // Some Data
    });

In the code above, data will be searched first in local memory, if not found there, it will be searched on Redis Storange, and if neither, it finally call myFunction().

0.0.2

11 years ago

0.0.1

11 years ago