keys
Version:
Unified api for node key/value stores
18 lines (13 loc) • 446 B
JavaScript
var redis = require("./index"),
client = redis.createClient();
// This currently doesn't work, due to what I beleive to be a bug in redis 2.0.1.
// INFO and QUIT are pipelined together, and the socket closes before the INFO
// command gets a reply.
redis.debug_mode = true;
client.info(redis.print);
client.quit();
// A workaround is:
// client.info(function (err, res) {
// console.log(res.toString());
// client.quit();
// });