Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best strategy share data between users on Realm Object Server?

If I want to share some data between users, what is the best strategy with Realm Object Server. For instance 5 users want to share their favorites movies. Everybody share 3 movies and they should see a list of 15 movies.

like image 903
Alan Digitals Avatar asked May 04 '17 07:05

Alan Digitals


Video Answer


1 Answers

If all users share all their favourite movies, they could each have their own realm to write to. You can give all other users read permissions to that realm. By keeping a reference of all realms(in a realm where everybody has read/write access), a user would load data from all other users and thus see their own and the others' favourite movies.

like image 139
Radu Tutueanu Avatar answered Oct 05 '22 16:10

Radu Tutueanu