在node.js中,Couchbase get / getMulti在超时时失败

时间:2014-02-20 08:46:49

标签: node.js couchbase

我是Couchbase的新手,并尝试使用couchbase模块1.2.1,与DB的连接似乎工作正常,但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;
            }
  });

可能是什么问题?

1 个答案:

答案 0 :(得分:1)

您应该尝试重新安装Couchbase Server,然后使用127.0.0.1:8091的主机重试。

您使用什么版本的Couchbase Server以及您正在使用的平台/架构也会对此有所帮助。