I need to implement pagination in my result fetching so while looking around, I got a link to Query Cursors on the Google Developer site but the article explains the use of Query Cursors using the low-level API (I avoid this thing like the plague). Everything I saw on JDO uses setRange(start, end) which (if I'm right) is not so efficient as you still pay for the overhead involved in fetching and discarding results preceding the range.
How can I use Query Cursors in JDO on top of the App Engine Datastore?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
From appengine docs:
https://developers.google.com/appengine/docs/java/datastore/jdo/queries Then, to use the cursor (also in the documentation provided, which you should read):
|
|||||||||||||
|