mongoDB索引
2019-10-11 本文已影响0人
招风小妖怪
在可视化工具Compass中
image.png如图
image.pngBuild index in the background
建索引过程会阻塞其它数据库操作,background可指定以后台方式创建索引,即增加 "background" 可选参数。
Create unique index
建立的索引是否唯一。指定为true创建唯一索引
Create TTL
定时自动删除,单位为秒
Partial Filter Expression
Use Custom Collation
Wildcard Projection
唯一索引,
如果建立唯一索引,添加了相同的索引项会报错,如下
{ MongoError: E11000 duplicate key error collection: webData.User index: email dup key: { email: "234562" }