Reputation: 9319
I'll have to sync database with 200000 row between devices.
Each existing and new row will have to be sync on all devices.
Upvotes: 0
Views: 203
Reputation: 106
All rows will be synchronized regardless of how many you have, but be aware that a single transaction adding 200,000 objects may consume an unexpected amount of space on the device. We recommend measuring to see if this is within your acceptable range, and if not, split the creation of the objects into multiple, smaller transactions.
Unfortunately, ROS does not yet support prepackaging a synchronized Realm file. We are aware of this use case, but we don't have a timeline for it at this point. So far, use cases where the initial sync was unacceptable have been fairly rare.
Upvotes: 1