Is it possible to make a join between different CouchDB Databases? I know, that I can put all data into the same database, but I want to use Ubuntus DesktopCouch, which has some default databases like contacts an notes I want to use. And I don't want to "spam" those Databases with my stuff
相关问题
- How to purge CouchDB documents
- CouchDB's Linked Documents in a View
- CouchDB: how to use _revs_diff to get document rev
- How do I keep existing data in couchbase and only
- In CouchDB shows, what does 'this' refer t
相关文章
- How to get last created document in couchdb?
- CouchDB Java client
- Does using NoSQL make sense for a non-distributed
- Built in way to read couchdb document size?
- Document conflict error when updating a design doc
- Step by step instruction for secure replication?
- CouchDB proxy? Apache As a Reverse Proxy?
- Any way to limit access to CouchDB view when JSONP
You won't be able to have documents from different databases in the results of a view. Your program can simply query each independent database for the docs you need.
Update - However, if you're wanting to create a working copy of that data for yourself in your own database, you can use replication to pull data into your database. Then you can mess with the data as much as you need, and push the updated data back via replication as well.