Hi, I have been trying to perform Pagination on the App Engine using Java, for a large data set of information. I read about it on many previous posts including the official documentation of Google App Engine :
http://code.google.com/appengine/docs/java/datastore/queriesandindexes.html#Query_Cursors Considering the constraints of fetching data from the datastore, nearly all the posts suggested the use of Cursors (a feature that was added in version 1.3.3.1 of the App Engine SDK ). Most of the code examples that I came across were performing pagination by displaying the pages sequentially, but my requirement is to even allow displaying the result for any page, i.e a random access is required. In simple words, I wish to attain a pagination which is similar to Google's way of displaying search results. After going through the Java Docs of the SDK, I got to know that Cursors can only store the index value for the next set of entries. Is there any other way to satisfy my requirement? -- 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.
