데이터베이스 생성

C:\Users\Leo > mongo
MongoDB shell version v4.0.28
connecting to: mongodb://ip:port/?gssapiServiceName=mongodb
...
> use firstdb
switched to db firstdb

컬렉션 생성

> db
firstdb

// > db.createCollection("firstCollection")

> db.firstCollection.insertOne({x:1})
{
        "acknowledged" : true,
        "insertedId" : ObjectId("63302e345a10030e8fac1b20")
}

Untitled

캡드 컬렉션 (Capped Collection) 생성

> db.createCollection("firstcol", {capped: true, size: 16384, max: 100})
{ "ok" : 1 }