Assuming I have an user who has an ID and I want to store a historical record (document) on this user every day, what is better:
- create a new document for each record and search for the user id; or
- keep updating and embedding that data into one single user document which keeps growing over time?
Mostly I want to retrieve only the current document for the user but all records should be accessible at any time without a super long search/query.