Assume we have a person and activity searchdefinitions. To find a the activities made by a person once can use the array type and match:word (many person can share the same activity) in the activity sd and then simply search for the person in the query.
Is this better for query performance than include a reference of the userID or name in the activity sd ?
Kind of the analogy to the common NoSQL document DB query, if one should include it in the document itself or using a linking document.
Thanks!