Name | String | 要创建的集合名称 |
Options | Document | (可选)指定有关内存大小和索引选项 |
capped | Boolean | (可选)如果为true,则启用封顶集合。封顶集合是固定大小的集合,会自动覆盖最早的条目,当它达到其最大大小。如果指定true,则需要也指定尺寸参数。 |
autoIndexID | Boolean | (可选)如果为true,自动创建索引_id字段的默认值是false。 |
size | number | (可选)指定最大大小字节封顶集合。如果封顶如果是 true,那么你还需要指定这个字段。 |
max | number | (可选)指定封顶集合允许在文件的最大数量。 |
例子:
createCollection() 方法不使用选项的基本语法如下:
>use test switched to db test >db.createCollection("mycollection") { "ok" : 1 } >
>show collections mycollection system.indexes
>db.createCollection("mycol", { capped : true, autoIndexID : true, size : 6142800, max : 10000 } ) { "ok" : 1 } >
在MongoDB中,不需要创建集合。当插入一些文件 MongoDB 自动创建的集合。
>db.yiibai.insert({"name" : "yiibai"}) >show collections mycol mycollection system.indexes yiibai >
删除集合:drop() 方法
MongoDB 的
db.collection.drop()
语法:
drop() 命令的基本语法如下
db.COLLECTION_NAME.drop()
首先,检查可用的集合在数据库 mydb
>use mydb switched to db mydb >show collections mycol mycollection system.indexes yiibai >
现在删除集合名称为 mycollection
>db.mycollection.drop() true >
>show collections mycol system.indexes yiibai >