How are concurrent updates to a model property handled?
If two clients update a model property at the exact same time (lets say an array of bool values encoded in single byte[] property), one client switching index 0, and the other switching index 10, can I be sure that the property will contain both changes after the updates are completed? Or will one win over the other? Will one get lost?