it is simple i know. but what i am concerning is about statistics
to count the different fields for different usage, it means we must count all the data, get the statistics info at once query. and more over, this statistics info may be more than one fields and have different orders between fields. for the time being, appengine can not handler this no only that we can not count an entity but also we can not count indexed fields. so for a real and fairly big website which need statistics info to see the conditions of the site. how can it be achieved by using appengine? On Dec 17, 8:43 pm, Grant <[email protected]> wrote: > I do bulk operations (including delete) using the queue. > > Here is some psuedo code > > List itemsToDelete = loadOneHundredItems(); > for (Item i in itemsToDelete) { > delete(i); > > } > > //this will stop it when it gets to the end of the queue > if (itemsTodelete.size() > 0) { > QueueFactory.getDefaultQueue().add("/admin/delete-all"); > > > > } -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
