GAE, DataView and performance

2011-09-15 Thread Chris Merrill
I'm using Objectify for datastore access in GAE, though the problem would be the same if I was using the datastore API directly. For optimal performance, Google recommends doing batch requests to the datastore whenever possible - they say making the requests in parallel is much faster than serial.

Re: GAE, DataView and performance

2011-09-15 Thread manuelbarzi
may you execute the query db in IDataProvider.iterator, instead of populateItem. see IDataProvider javadoc. . On Thu, Sep 15, 2011 at 3:16 PM, Chris Merrill wrote: > I'm using Objectify for datastore access in GAE, though the problem would > be the same if I was using the datastore API directly

Re: GAE, DataView and performance

2011-09-16 Thread Chris Merrill
On 9/15/2011 9:38 AM, manuelbarzi wrote: > may you execute the query db in IDataProvider.iterator, instead of > populateItem. see IDataProvider javadoc. Wow...that was easy! I'm so glad I asked. You guys have thought of everything. I love Wicket! Chris --