Pagination in CouchDB? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T16:07:16Zhttp://stackoverflow.com/feeds/question/312163http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/312163/pagination-in-couchdb6Pagination in CouchDB?dbr2008-11-23T05:37:17Z2009-07-18T12:00:39Z
<p>How would I go about implementation the queries required for pagination?</p>
<p>Basically, when page 1 is requested, get the first 5 entries. For page 2, get the next 5 and so on.</p>
<p>I plan to use this via the couchdb-python module, but that shouldn't make any difference to the implementation.</p>
http://stackoverflow.com/questions/312163/pagination-in-couchdb/312166#3121661Answer by dbr for Pagination in CouchDB?dbr2008-11-23T05:41:12Z2008-11-23T05:41:12Z<p>This is what I have came up with so far - to get the ids of all posts, then retrieve the actual items for the first x number of IDs..</p>
<p>It's not terribly efficient, but more so than retrieving all the posts, then throwing most of the away. That said, to my surprise, it seemed to run quite quickly - I ran the <code>posthelper.page()</code> method 100 times and it took about 0.5 seconds.</p>
<p>I didn't want to post this in the actual question, so it wouldn't influence the answers as much - here's the code:</p>
<pre><code>allPostsUuid = """
function(doc) {
if(doc.type == 'post'){
emit(doc._id, null);
}
}
"""
class PostsHelper:
def __init__(self):
server = Server(config.dbhost)
db = server[config.dbname]
return db
def _getPostByUuid(self, uuid):
return self.db.get(uuid)
def page(self, number = 1):
number -= 1 # start at zero offset
start = number * config.perPage
end = start + config.perPage
allUuids = [
x.key for x in self.db.query(allPostsUuid)
]
ret = [
self._getPostByUuid(x) for x in allUuids[start : end]
]
if len(ret) == 0:
raise Error404("Invalid page (%s results)" % (len(allUuids)))
else:
return ret
</code></pre>
http://stackoverflow.com/questions/312163/pagination-in-couchdb/314532#3145326Answer by kerrr for Pagination in CouchDB?kerrr2008-11-24T15:46:39Z2008-11-25T09:41:12Z<p>The CouchDB <a href="http://wiki.apache.org/couchdb/HTTP_view_API" rel="nofollow">HTTP View API</a> gives plenty of scope to do paging efficiently.</p>
<p>The simplest method would use <code>startkey</code> and <code>count</code>. 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.</p>
<p>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.</p>
<p>A simpler method of doing this is to use the skip parameter to work out the starting document for the page, however this method should be used with caution. The skip parameter simply causes the internal engine to not return entries that it is iterating over. While this gives the desired behaviour it is much slower than finding the first document for the page by key. The more documents that are skipped, the slower the request will be.</p>
http://stackoverflow.com/questions/312163/pagination-in-couchdb/1147362#11473621Answer by cpinto for Pagination in CouchDB?cpinto2009-07-18T12:00:39Z2009-07-18T12:00:39Z<p>There's this utility library at github.com that abstracts you from the pagination work: <a href="http://github.com/cpinto/python-couchdb-paginator/tree/master" rel="nofollow">http://github.com/cpinto/python-couchdb-paginator/tree/master</a></p>