I'm building a node.js application and I do not really know if NoSQL database like MongoDB could be used for my needs.
Basically, I have 2 models. If I think in term of relational database, this is how I would set up things:
FirstModel which only has a couple of attributes and a 1 to many relationship to SecondModel.
SecondModel containing a foreign key toward FirstModel.
An item of FirstModel will have a lot of corresponding item of SecondModel.
Any idea if NoSQL is a good candidate for this ?