我正在使用c#
的以下链接中的驱动程序https://github.com/datastax/csharp-driver
看起来真的很棒。但问题是时间问题。我等待连接或执行超过1分钟的查询。我尝试cassandraemon,它在1-2秒内连接。但它不喜欢这个库,想要使用另一个。
所以这是我的连接代码..我的错误在哪里?
try
{
cluster = Cluster.Builder()
// .AddContactPoints(nodes)
.AddContactPoint("xx.xx.xx.xx")
.Build();
session = cluster.Connect();
}
catch (Exception e)
{
return false;
}
return true;