我是Couchbase的新手,并尝试使用ouchbase模块1.2.1,与数据库的连接似乎正常,但是get和getMulti操作失败,并且我得到的错误是“操作超时”。
我试图增加超时时间,但没有帮助。
var db = new couchbase.Connection({ host:'localhost:8091', bucket:'beer-sample'},
function(err){
if (err){
throw err; // not getting here
}
});
db.get("id", function(err, result) {
if (!err && result){ // getting error
req.id = result;
}
});
可能是什么问题?
最佳答案
您应该尝试重新安装Couchbase Server,然后使用127.0.0.1:8091
主机重试。
知道哪个版本的Couchbase Server和正在使用的平台/体系结构也将有所帮助。
关于node.js - Couchbase get/getMulti在node.js中超时失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21902522/