Skip to content

Instantly share code, notes, and snippets.

@maisnamraju
Forked from reu/pub-sub.js
Created August 1, 2016 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maisnamraju/2a647fb325c941dcecfd3c90a443a8ee to your computer and use it in GitHub Desktop.
Save maisnamraju/2a647fb325c941dcecfd3c90a443a8ee 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