Given a simple json document such as:
{ _id: 1234, messages: [...], otherfields: ... }
If two people open the document, and push a message onto the array, the first update will be clobbered by the second.
For types other than arrays, I'm ok with this.
In an rdbms this isn't an issue since the two messages are simply inserted into a messages table without problem. Similarly, I could put the messages into a separate collection but I feel I lose the advantage of using a document store where I can keep the message within the context of the document.
Are there solutions to specify a push operation within the store so that I don't have to clobber the array?
Specifically, I am looking at mongodb but I'd appreciate solutions from other others like couchdb.