MongoDB fundamental

mongoDBの構造

- DB
 - Collection
   - Document
   - Document
   - Document
   - Document
   - Document
   - Document

collectionがtableのようなもので、Documentがレコードのようなもの

$ mongoで入る

[vagrant@localhost cookie]$ mongo

use dbnameでdb作成

> show dbs
local  0.078GB
mydb   0.078GB

> use app
switched to db app