我正在尝试使用Couchbase数据库,我已按照此处的教程进行了操作:
http://developer.couchbase.com/documentation/server/4.0/sdks/dotnet-2.2/hello-couchbase.html
我已经从软件包管理器安装了这个块,并开始编写代码。但是当我试图调用Cluster.OpenBucket函数时,我得到了:
未处理的类型' System.AggregateException'发生在Couchbase.NetClient.dll
"连接尝试失败,因为连接方没有 在一段时间后正确回应,或建立连接 失败,因为已连接的主机无法响应"
那是我的代码:
class DbMgr
{
private static readonly Cluster Cluster = new Cluster();
const string BUCKET_NAME = "This-Is-A-Bucket-Name";
public void Init()
{
//This is where I get exception....
using (var bucket = Cluster.OpenBucket(BUCKET_NAME, ""))
{
var document = new Document<dynamic>
{
Id = "Hello",
Content = new
{
name = "Couchbase"
}
};
}
}
}
任何想法?