Skip to content

Instantly share code, notes, and snippets.

@juvenn
Created May 8, 2010 19:46
Show Gist options
  • Save juvenn/394735 to your computer and use it in GitHub Desktop.
Save juvenn/394735 to your computer and use it in GitHub Desktop.
node> redis.set("greeting", "Thank you, Brain, for building us redis-node-client")
node> redis.get("greeting", function(err, reply) { sys.puts(reply); })
node> Thank you, Brain, for building us redis-node-client
redis.get("greeting", function(err, reply) { sys.puts(typeof(reply)); })
node> object // oops, it's an object instead of string
redis.get("greeting", function(err, reply) { sys.puts(sys.inspect(reply)); })
// What's this? a buffer representation?
node> { '0': 84, '1': 104, '2': 97, '3': 110 ... , length: 51 }
@juvenn
Copy link
Author

juvenn commented May 9, 2010

I see, thanks for confirming!

node.js api has documented buffer.toString(), my ignorance:

http://nodejs.org/api.html#buffers-3

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