I am planning to re-build my database using mongoDB instead of a RDBMS.
I currently have some tables in my database. I am just wondering.. each table will be a mongodb document?
I mean, will table with user/email/password be just something like this?
{list_of_users: [{email: "value", pass: "value", user: "value"}, {...}, ...]}
And i am also wondering... these documents which includes arrays have limit of storage or can be used just like common tables in database, and i can add as many "rows" (elements of an array) as i want?
Thank in advance !!