I installed redis on the links. https://github.com/mranney/node_redis
and try
var redis = require("redis"), client = redis.createClient(); client.on("error", function (err) { console.log("Error " + err); }); client.set("string key", "string val", redis.print); client.hset("hash key", "hashtest 1", "some value", redis.print); client.hset(["hash key", "hashtest 2", "some other value"], redis.print); client.hkeys("hash key", function (err, replies) { console.log(replies.length + " replies:"); replies.forEach(function (reply, i) { console.log(" " + i + ": " + reply); }); client.quit(); });
and node test.js
gives me this error why?
Error Error: Redis connection to 127.0.0.1:6379 failed - ECONNREFUSED, Connection refused
why does this error occur? What should I do?
source share