[appengine-java] Re: Would the following create problems for me in Google app engine?

2011-05-31 Thread Nichole
Adding to Ian's suggesting, you might want to look at Query Cursors and pre-prepare reports ahead of time... or pre-prepare reports iteratively, compress, store as blob and download... On May 31, 1:24 pm, Ian Marshall wrote: > You can reduce time-out issues if you paginate your query by obtaini

[appengine-java] Re: Would the following create problems for me in Google app engine?

2011-05-31 Thread Ian Marshall
You can reduce time-out issues if you paginate your query by obtaining contiguous chunks, one at a time. A lot depends on your data exchange interface. I use JDO, and GAE/J makes query cursors available for this. I don't know how other interfaces allow cursor/pagination operations. (Twig and Object