Mickel
Mickel

Reputation: 6696

Linked documents across databases in CouchDb

I've been reading about Linked documents in the CouchDb documentation, it seems fine and all.

But is it possible to write a view in Database A that emits a document from Database B? I need it because we store different types in different databases.

Upvotes: 2

Views: 219

Answers (1)

djc
djc

Reputation: 11711

No, that doesn't work. You should store different-but-related types in the same database.

Upvotes: 3

Related Questions