Skip to content

Instantly share code, notes, and snippets.

@felipekm
Created March 27, 2016 13:49
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 felipekm/7a1ffd45a64b0d5fc69e to your computer and use it in GitHub Desktop.
Save felipekm/7a1ffd45a64b0d5fc69e to your computer and use it in GitHub Desktop.
node.js redis pubsub sample
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");
@keisabably
Copy link

Hello my name is keisa,its give me please to write you after going through your profile i will like to be in communication with you kindly write me(keisafreya@yahoo.co.uk) for a deal. thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment