Is there a way to do aggregate functions on Google App Engine?
问题 One of the nice things relational databases support are the aggregate functions like count, sum, avg etc. But it seems that if you are using GAE, when inserting or updating a record you must calculate and store the count, sum, avg, etc. values of the whole table. But what if you have many conditional groupings? Given a Person: class Person { @Id Integer age; String city; } If I want the total number of persons and the average age Is it correct that everytime I create, update or delete a