amino-driver-redis
v0.3.5
Published
Redis driver for amino
Downloads
19
Readme
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 + '!');
});