I'm loving RethinkDB!
I have a quick question in regards to efficiency of fetching data. I'm building a CRUD model for managing people's contacts.
Making one document containing an array of all the userID's contacts and access it by the primary index (the userID)
OR
Making one document for each contact of the userID and access it by a secondary index (the userID)
I'm trying to imagine how this would play out when there's 10,000 users and about 100,000 unique contacts.
Thank you!!!