Skip to content

Instantly share code, notes, and snippets.

@cellvia
Created December 6, 2012 01:57
Show Gist options
  • Save cellvia/4221234 to your computer and use it in GitHub Desktop.
Save cellvia/4221234 to your computer and use it in GitHub Desktop.
var Redis = require('redis-stream');
var client = new Redis( settings.redisPort, settings.redisHost );
var keystream = client.stream('keys')
keystream.write('fogbugz:ticket:*');
keystream.on("end", function(){
console.log("end"); /*returns all the keys properly, but NEVER ENDS*/
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment