realm / realm-object-server

Tracking of issues related to the Realm Object Server and other general issues not related to the specific SDK's
https://realm.io
293 stars 42 forks source link

How to not sync certain objects? #263

Closed ekimia closed 7 years ago

ekimia commented 7 years ago

Device specific object that should be persisted only in the local realm.

For example, I have an image snapshot of a dashboard. That snapshot is only meant to reflect the current user's last state when viewing a dashboard. Therefore, I don't want other users to see it.

Maxxan commented 7 years ago

I think that you will need to use one realm for shared data and one realm for their personal state.

ekimia commented 7 years ago

thanks!