From Boldcore's wiki
MongoDB
Nothing useful
Raised on MySQL, I am new to mongo, and I need to get more familiar with the syntax. Mongo's NoSQL is very attractive to me. Just a random pastes from cmdline.
/* Insert shit */ > db.pers.insert({"name":"Peter","age":"7","colour":"red"}) /* Retrieve shit */ > db.pers.find({"name":"Peter"}).pretty() { "_id" : ObjectId("58c950e7fe9fddf65dd0e8d5"), "name" : "Peter", "age" : "7", "colour" : "red" } > db.createCollection("tabulka")