Skip to content

Instantly share code, notes, and snippets.

@mosfet1kg
Created May 25, 2017 09:38
Show Gist options
  • Save mosfet1kg/56d5efd5399714b7611fbcec953be9c4 to your computer and use it in GitHub Desktop.
Save mosfet1kg/56d5efd5399714b7611fbcec953be9c4 to your computer and use it in GitHub Desktop.
redis event
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