Hacker News new | ask | show | jobs
by Handwash 3358 days ago
I have been introduced to this from my local MySQL team. Just want to confirm, how is the conflict resolution solved? e.g., two different updates on two different server at about the same time.
1 comments

Certification of transactions is done on transaction commit.

If two people have modified the same data, then one of them will get a similar error to a deadlock. The other is free to proceed.