美文网首页
mongoDB索引

mongoDB索引

作者: 招风小妖怪 | 来源:发表于2019-10-11 22:41 被阅读0次

    在可视化工具Compass中

    image.png

    如图

    image.png

    Build 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" }

    相关文章

      网友评论

          本文标题:mongoDB索引

          本文链接:https://www.haomeiwen.com/subject/ftaxmctx.html