Computer >> 컴퓨터 >  >> 프로그램 작성 >> MongoDB

MongoDB에서 createdCollectionAutomatically는 무엇을 의미합니까?

<시간/>

컬렉션이 존재하지 않으면 MongoDB는 인덱싱 부분에 컬렉션을 생성합니다. createdCollectionAutomatically 작업이 컬렉션을 생성했음을 알려줍니다.

예를 들어 인덱스가 있는 컬렉션을 생성해 보겠습니다 -

> db.createCollectionDemo.createIndex({"ClientCountryName":1});

이것은 다음과 같은 출력을 생성합니다 -

{
   "createdCollectionAutomatically" : true,
   "numIndexesBefore" : 1,
   "numIndexesAfter" : 2,
   "ok" : 1
}

문서로 컬렉션을 만들자 −

> db.createCollectionDemo.insertOne({"ClientName":"Larry","ClientCountryName":"US"});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5cd2950be3526dbddbbfb612")
}

다음은 find() 메서드를 사용하여 컬렉션의 모든 문서를 표시하는 쿼리입니다. -

> db.createCollectionDemo.find().pretty();

이것은 다음과 같은 출력을 생성합니다 -

{
   "_id" : ObjectId("5cd2950be3526dbddbbfb612"),
   "ClientName" : "Larry",
   "ClientCountryName" : "US"
}