SequoiaDB_索引
日期: 2020-01-08 分类: 跨站数据 400次阅读
1 索引
(赋属性的名不要用“”包起来,索引查询标志:ixScan,普通查询标志:tbScan,想要查询的时候显示标志,在语句末尾 .explain())
1.1 在集合 bar 下为字段名 age 创建名为 ageIndex 的唯一索引,记录按 age 字段值的升序排序
db.foo.bar.createIndex(“ageIndex”,{ age : 1 }, true)
1.2 集合 bar 创建唯一索引,并且索引字段不允许为 null 或者不存在
db.foo.bar.createIndex(“ageIndex”,{ age : 1 },{Unique: true, NotNull: true } )
1.3 在集合 bar 中的 address 及 tags 字段上建立全文索引,用于对这两个字段进行全文检索
db.foo.bar.createIndex(“ageIndex”,{ address : text, tags : text } )
除特别声明,本站所有文章均为原创,如需转载请以超级链接形式注明出处:SmartCat's Blog
上一篇: es6 对象值清空
精华推荐