Has anyone used any NoSQL engines, such as Mongo, on any of their projects?
For those who don't know the appeal vs. SQL, the idea of NoSQL is that you can find stuff without awkwardly concatting a string together to form a command. Instead, you just use objects in the language to represent models and database results.
So, in Javascript, the following would produce a user record:
For those who don't know the appeal vs. SQL, the idea of NoSQL is that you can find stuff without awkwardly concatting a string together to form a command. Instead, you just use objects in the language to represent models and database results.
So, in Javascript, the following would produce a user record:
Code:
db.user.find( { "user_id": 42 }, { "history": 0 } )







