Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Objectify paging [closed]

Can you find a good tutorial or documentation about achieving a good pagination in a Google App Engine Objectify world?

I found some posts: http://groups.google.com/group/objectify-appengine/browse_thread/thread/b640b5d377b620b4

But nothing seems to help me. Is there some sort of LIMIT query?

like image 764
Fabio B. Avatar asked Jul 28 '11 15:07

Fabio B.


1 Answers

The post you linked to describes the correct way to do pagination: Using cursors. You can fetch using offsets and limits, but it's inefficient and should be avoided.

like image 176
Nick Johnson Avatar answered Oct 19 '22 01:10

Nick Johnson