Sha256: 883637ffa60f0f2a3fe8167491f89aa84d6c5fa75fd2f5677ae6243774dde7f9
Contents?: true
Size: 456 Bytes
Versions: 33
Compression:
Stored size: 456 Bytes
Contents
// Sending commands in response to other commands. // This example runs "type" against every key in the database // var client = require("redis").createClient(); client.keys("*", function (err, keys) { keys.forEach(function (key, pos) { client.type(key, function (err, keytype) { console.log(key + " is " + keytype); if (pos === (keys.length - 1)) { client.quit(); } }); }); });
Version data entries
33 entries across 33 versions & 4 rubygems