How do I perform a large query in google app engine?
问题 I have collection of apps that total almost 1 million users. I am now adding a push notification system using Google cloud messaging to create alerts. My database contains an entity with the GcmId and app name (ex. "myApp1"). Now, I want to send a GCM message to all users of "myApp1". The objectify documents do not describe the .limit function well though. For example, from the GCM demo app: List<RegistrationRecord> records = ofy().load().type(RegistrationRecord.class).limit(10).list(); will