createdCollectionAutomatically在MongoDB中是什么意思?

如果不存在集合,则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"
}