When we try to get result from a view using this code
IView list = _cache.GetView(entityIndex.DesignDoc, entityIndex.View, true).Keys(keys);
if (list != null && list.Count<T>() > 0)
results = list.ToList<T>();
we get to see several calls to couchbase server to get data from couchbase view, Suppose we run our code to get 500 results from a view than on list.count there are 500 calls to the couchbase server again on list.TOList there are another 500 calls to the couchbase server .
Is there any way to reduce it to just one couchbase server call for this 500 result.
Regards,
Sunil Singh