The AsyncClient doesn’t seem to have an async equivalent to AerospikeClient.QueryAggregate. Is there some other way to perform an aggregation query asynchronously, or is the unsupported by the C# client?
Asynchronous query aggregate
pgupta
#2
I do see it listed in C# AsyncClient member functions.
http://www.aerospike.com/apidocs/csharp/Index.html -> AsyncClient -> AsyncClient Members
Brian
#3
Aggregation queries are not supported in AsyncClient. The online docs show QueryAggregate, but it’s the synchronous QueryAggregate inherited from AerospikeClient,
arodriguez
#4
@Brian is correct, there doesn’t appear to be an async path for QueryAggregate. Is this something that is not possible to do for aggregate queries in Aerospike?