Hi everyone. This is really a mongodb design question. I was reading this slide: http://openmymind.net/Multiple-Collections-Versus-Embedded-Documents/#1
I have a hierarchy to track that includes info such as:
- users
- id
- email
- projects
- actions
- etc
so a giant embedded structure could work, but multiple collections seems cleaner to search and just to think about. It seems relational in some way. Any advice from all the other mongo users here? Thanks.