Couchbase is taking too long in the first response

Hi

The version of the .NET sdk is 2.1.3

Here is the connection code

var cluster = new Cluster(new ClientConfiguration
{
	Servers = new List<Uri>
		{
			new Uri("url")
		}
});

using (var bucket = cluster.OpenBucket("user", "pass"))
{
 try
 {
	var documentList = bucket.Get<T>(docsId);

	
	return documentList.Select(doc => doc.Value.Value as ICouchbaseObject).ToList();
 }
 catch (Exception ex)
 {
	Log.Error("Error retrieving documents from couchbase: "+ ex);
 }
}