Hi,
A TableIterator<Row> is returned when I do query operations using a tables's index.If I want to get the total number of records ,I have to count one by one using the TableIterator<Row> returned.
Can I get the total number of records directly meeting the query conditions?
I can get the total number of records directly meeting the query conditions from CLI using command aggregate table -name tableName -count -index indexName -field fieldName -start startValue -end endValue.
Can I get the same results using Table API?
I have used MongoDB and Oracle NoSQL for about one year.According to the experience of the use of these dbs,I think the query interface of mongoDB is powerful .In contras,the query interface is relatively simple resulting in that there are many works which are usually time-consuming to do in the client side.