Я установил Redis с помощью «npm install redis».Затем я запускаю пример кода, предоставленного этой страницей проекта node_redis .Я получил это
"error error: Redis connection to 127.0.0.1:6379 failed - EPERM, Operation not permitted"
Я думаю, что здесь что-то упущено, может кто-нибудь помочь мне указать на это?Ниже приведен код, который я использовал
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();
});