Skip to content

Instantly share code, notes, and snippets.

@aruss
Forked from reu/pub-sub.js
Last active August 29, 2015 14:22
Show Gist options
  • Save aruss/b85dbcbf26745e29b9d5 to your computer and use it in GitHub Desktop.
Save aruss/b85dbcbf26745e29b9d5 to your computer and use it in GitHub Desktop.
var redis = require("redis")
, subscriber = redis.createClient()
, publisher = redis.createClient();
subscriber.on("message", function(channel, message) {
console.log("Message '" + message + "' on channel '" + channel + "' arrived!")
});
subscriber.subscribe("test");
publisher.publish("test", "haaaaai");
publisher.publish("test", "kthxbai");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment