GithubHelp home page GithubHelp logo

node-caching's Introduction

node-caching

Makes working with caching easier.

Installation

Via npm:

$ npm install caching

Pseudo code example

var Caching = require('caching');
var cache = new Caching('redis'); /* use 'memory' or 'redis' */

var ttl = 60 * 1000; // 1minute;
cache('twitter-users', ttl, function(passalong) {
	getMostActiveTwitterUser(function(err, userName) {
		fetchTwitterFollowers(userName, passalong); // passalong replaces function(err, userList) {}
	})
}, function(err, userList) {
	console.log(userList);
});

Code example

var Caching = require('caching');
var cache = new Caching('redis'); /* use 'memory' or 'redis' */

setInterval(function() {
	cache('key', 10000 /*ttl in ms*/, function(passalong) {
		// This will only run once, all following requests will use cached data.
		setTimeout(function() {
			passalong(null, 'Cached result');
		}, 1000);
	}, function(err, results) {
		// This callback will be reused each call
		console.log(results);
	});
}, 100);

Built in stores

  • Memory
  • Redis

Api

cache(key, ttl, runIfNothingInCache, useReturnedCachedResults);

arguments[0]

Key, 'myKey'

arguments[1]

Time To Live in ms, 60*30*1000

arguments[2]

Callback that will run if results aren't already in cache store.

function(passalong) {
	setTimeout(function() {
		passalong(null, 'mape', 'frontend developer', 'sweden');
	}, 1000);
}

arguments[3]

Callback that is called every time the method runs.

function(err, name, position, location) {
	console.log(name, position, location);
}

node-caching's People

Contributors

mape avatar slaskis avatar

Watchers

Chetan Shenoy avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.