Reputation: 66647
I want to find a framework for pagination in Google App Engine.
Do you know of one?
Upvotes: 1
Views: 916
Reputation: 14187
If you want to do paging you should read about cursors. The article linked to by Jason was written before cursors were around. Cursors can simplify paging greatly, especially in cases that Andrew mentions, when dealing with sorts and filters.
Upvotes: 3
Reputation: 1050
Pagination is not always easy-to-do, especially when you consider sorting and filtering. Check out this recipe as a start: http://appengine-cookbook.appspot.com/recipe/efficient-paging-for-any-query-and-any-model/
Upvotes: 2