What I'm essentially looking for is SQL translated into Google AppEngine terms (for Java):
select count(*) from Customers
It seems quite simple, but, reading the documentation, it seems that I will have to run a request that matches all Clients, loop and calculate the results, taking into account the paging. I don’t want to extract every element, I just want to count them.
Or in another way, there was an API to iterate over all records of this type (at the moment, it is not possible to find the exact API). This seems rather inefficient, not to mention the fact that calls for storage also have a limited quota.
Any clues would be appreciated.
Thanks Mark
Mark
source
share