How many "parallel" updates are possible?

Hey there,

If a database collection can be updated by anyone, does Corvid takes care of multiple users trying to update a record “in parallel”. Obviously, the latest update should be the actual value in the database collection.

Best,
Umut

The following is from Wix’s data potentate:

“Full record is always updated. We write to a single master and all writes are serialized. So, there is no room for conflicts. From clients perspective - last write wins.”

I hope that helps.

Perfect, thank you.