vote up 0 vote down star
1

How to fetch multiple documents from CouchDB, in particular with couchdb-python?

flag

2 Answers

vote up 1 vote down

This is the right way:

import couchdb

server = couchdb.Server("http://localhost:5984")
db = server["dbname"]
results = db.view("_all_docs", keys=["key1", "key2"])
link|flag
This is true only if you don't what fine grained control over the results. My method allows you ask for keys from _all_docs that don't exist, and you'll get back a empty placeholder for the non-existant keys. If you attempt this with your method you'll get an exception when iterating over the results. Why would want to do something like this? Fast manual joins. You have x documents and you want to join in data from other documents. – dnolen Oct 29 at 16:37
vote up 0 vote down check
import couchdb
import simplejson as json

resource = couchdb.client.Resource(None, 'http://localhost:5984/dbname/_all_docs')
params = {"include_docs":True}
content = json.dumps({"keys":[idstring1, idstring2, ...]})
headers = {"Content-Type":"application/json"}
resource.post(headers=headers, content=content, **params)
resource.post(headers=headers, content=content, **params)[1]['rows']
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.