npm.io
0.3.5 • Published 14 years ago

amino-driver-redis

Licence
Version
0.3.5
Deps
2
Vulns
0
Weekly
0

amino-pubsub-redis allows you to use redis as a pub/sub backend for amino.

Usage

publisher.js

// Tell other nodes my name when I start.
var amino = require('amino')
  .use(require('amino-pubsub-redis'), {host: 'localhost', port: 6379});

amino.publish('myname', 'amino99');

subscriber.js

// Greet other nodes as they come up.
var amino = require('amino')
  .use(require('amino-pubsub-redis'), {host: 'localhost', port: 6379});

amino.subscribe('myname', function(name) {
  console.log('hello, ' + name + '!');
});