I've used "select from X.class.getName()" to get all records of class X, but if there is a lot of records, it might take a long time to get the results.

I just want a count of how many records are there in the Datastore, what's the fastest query to get this number ? Is there something like "select COUNT() X.class.getName()" that can return , for example, 234000 [ the count of all records ] ?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 0 down vote accepted

See What's the best way to count results in GQL?

(short answer is that you should store the amount of object and update it whenver you add/remove objects from the datastore)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.