Created
April 9, 2013 01:51
-
-
Save reu/5342276 to your computer and use it in GitHub Desktop.
node.js redis pub-sub example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
hi
Hi and tnanks from Latvia!
Hiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii !!!!!!!!
hi, bg
Ayaya!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi