I read at https://docs.mongodb.com/realm/sync#use-case-profiles-and-scalability that a realm can handle 30 concurrent writers, but performance drops beyond that because of conflict resolution overhead.
I can see why there would be conflicts if users write to the same object, but assuming they all write to a separate object in the same realm, would the overhead still occur?
At the realm level, it is a “Multiple writer, multiple reader” case, however at the object level, it is more of a “Single writer, multiple reader” case. Which one is more relevant?