On Apr 18, 10:33 am, kamathln <[email protected]> wrote:
> the task could do something like this : > > q=soemthing.all() > if cursor: > q.with_cursor(cursor) > q.limit(20) > next_cursor=q.cursor() > add the cursor to cache with unique session/query id > rinse, repeat till satisfied. > Fix: -- q.limit(20) ++ temp =q[20] -- 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.
