Young87

SmartCat's Blog

So happy to code my life!

游戏开发交流QQ群号60398951

当前位置:首页 >跨站数据

SequoiaDB_索引

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 对象值清空

下一篇: 阿里巴巴向全社会开放黑科技:“泡在水里”的服务器

精华推荐