I want to find a framework for pagination in Google App Engine.
Do you know of one?
I want to find a framework for pagination in Google App Engine.
Do you know of one?
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/
You don't need a framework for this. Just read through this article, it's got basically everything you need to know.
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.
The following site may help you:
http://www.learningtechnicalstuff.com/2010/04/pagedquery-easy-paging-using-cursors-on.html