尝试使用memcache,Node引发了与客户端连接的ECONNREFUSED错误,我已经尝试使用相同结果更改另一个端口,并且我还重新启动了计算机,防火墙和防病毒软件。可能是什么问题?
memcache = require("memcache");
client = new memcache.Client(11211, '127.0.0.1');
client.on('connect', function() {
console.log("memcache connectd"); //this will not be called
});
client.on('close', function() {
console.log("memcache closed"); //this is called!
});
client.on('timeout', function() {
console.log("memcache timeout");
});
client.on('error', function(e) {
if (e) console.log(e);
});
client.connect();
*与ALL相同的问题! memcached,mysql,couchdb,一切都引发了这个错误! d:
控制台输出:
$ node app.js
{ [Error: connect ECONNREFUSED]
code: 'ECONNREFUSED',
errno: 'ECONNREFUSED',
syscall: 'connect' }
memcache closed
答案 0 :(得分:2)
您需要先安装内存缓存服务器...