user1515255
user1515255

Reputation: 1

CouchDB Replicator

I am trying to create a couchdb interface in which databases for multiple operating systems contain documents with identical keys but strings in different languages. I would like to use the Replicator function when I update the main file to notify me which documents do not have the update and which keys need to be created or updated.

Upvotes: 0

Views: 93

Answers (1)

smathy
smathy

Reputation: 27961

The _rev field is made by hashing the contents of the document, so it's not possible to have two different documents and use Couch'd replication.

Upvotes: 1

Related Questions