vote up 2 vote down star
2

I come from a RDBMS background, and I have an application here which requires good scalability and low latency. I want to give CouchDB a try. However, I need to detect when a particular INSERT operation fails due to a unique key constraint. Does CouchDB support this? I took a look at the docs, but I could not come across anything relevant.

flag

75% accept rate
You are aware of the fact that even the project itself states it's not ready for production and there may be significant changes? wiki.apache.org/couchdb/… – jitter Jun 29 at 13:25
Yeah, when I look up online, I saw that, but I am willing to go through this route because, I am not building the entire system on it, but only one particular component which needs that kind of scalability. – thomas55 Jun 29 at 13:37

2 Answers

vote up 1 vote down

The _id for each document is unique (within the same database), but there are no constraints for other fields in the document.

Particularly, there are no constraints that run across two or more documents.

You can set up validation documents to set up validation rules for documents, but again they are on a document by document basis.

link|flag
vote up 0 vote down

As the above poster says, there are no constraints for other fields than the document _id. The _id can be automatically generated by couchdb or you can create your own. (for my purposes I have created my own as I knew I could guarantee the key's uniqueness).

At the lowest API level, if you attempt a PUT request of an existing document id, it will be rejected with a HTTP 409 error - unless you supply the correct revision (_rev property) of the existing document.

I wouldn't run anything mission-critical with couchdb but the code is out of Apache incubation and quite functional. A number of people are running websites with it.

link|flag

Your Answer

Get an OpenID
or

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