You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-09 00:22:08 +03:00
19 lines
627 B
JavaScript
19 lines
627 B
JavaScript
var redis = require("redis"),
|
|
client = redis.createClient();
|
|
|
|
client.on("connect", function () {
|
|
client.set("string key", "string val", function (err, results) {
|
|
console.log("SET: " + results);
|
|
});
|
|
client.hset("hash key", "hashtest 1", "should be a hash", function (err, results) {
|
|
console.log("HSET: " + results);
|
|
});
|
|
client.hset(["hash key", "hashtest 2", "should be a hash"], function (err, results) {
|
|
console.log("HSET: " + results);
|
|
});
|
|
client.hkeys("hash key", function (err, results) {
|
|
console.log("HKEYS: " + results);
|
|
process.exit();
|
|
});
|
|
});
|