With the new realm version there is new cloud capability, where users can sync their data between all of their devices. I want to create a Main database where all the users store their information in this database, so each user could access the other user information.
Is there a way to do it? My database is going to contain a lot of data and is going to be very complex (storing thousands of images for each users).
So I would like to be able to access the database, but not to download it to the device and not to sync it (the on device database will not change every time image that is not related to the device will change).
Realm-Database
. However, as far as I do understand, the synchronization offered by the new Realm
Object Server is not conditional: you either sync the entire DB or you don't. Additionally, Realm
is offline first, meaning that the entire DB will be on your device at any given moment.