Skip to content

Instantly share code, notes, and snippets.

@uran1980
Forked from reu/pub-sub.js
Created September 13, 2017 15:09
Show Gist options
  • Save uran1980/5556f36f2ee5c677b40fd3e287e695c7 to your computer and use it in GitHub Desktop.
Save uran1980/5556f36f2ee5c677b40fd3e287e695c7 to your computer and use it in GitHub Desktop.
node.js redis pub-sub example
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