Best strategy for sharing data between users on Realm Object Server?

If I want to share some data between users, which is the best strategy with Realm Object Server. For example, 5 users want to share their favorite movies. Everyone has 3 films, and they should see a list of 15 films.

+6
source share
1 answer

If all users use all their favorite movies, each of them may have its own kingdom. You can grant all other users read access to this area. Keeping a link to all areas (in the area where everyone has read / write access), the user will download data from all other users and, thus, view their own and favorite films of others.

+1
source

Source: https://habr.com/ru/post/1016975/


All Articles