The CouchDB HTTP View API gives plenty of scope to do paging efficiently.
The simplest method would use startkey and count. Count is the max number of entries CouchDB will return for that view request, something that is up to your design, and startkey is where you want CouchDB to start. When you request the view it will also tell you how many entries there are, allowing you to calculate how many pages there will be if you want to show that to users.
So the first request would not specify a startkey, just the count for the number of entries you want to show. You can then note the key of the last entry returned and use that as the start key for the next page. In this simple form, you will get an overlap, where the last entry of one page is the first of the next. If this is not desirable it is trivial to simply not display the last entry of the page.
You can also
A simpler method of doing this is to use the skip and count parameters parameter to skip x documentswork out the starting document for the page, and display yhowever this method should be used with caution. This removes The skip parameter simply causes the need internal engine to retain a startkeynot return entries that it is iterating over. For example, to retrieve While this gives the "second desired behaviour it is much slower than finding the first document for the page " (assuming 5 items per page):
?skip=6&count=5
by key. The more documents that are skipped, the slower the request will be.
