执行计划:巨杉数据库的执行计划通过explain获取,分成两种,一种是未运行获取的执行计划,一种是已运行后获取的执行计划。两种方式获取的执行计划详情有所不同。
索引:在巨杉早期的版本中,先建立的索引会被优先使用,这是不合理的,后面的版本不知道有没有进行优化。可以通过hint进行指定使用哪个索引。
--执行计划
> db.scott.person.find({age:18}).explain()
> db.scott.person.find({age:18}).explain({Run:false})
> db.scott.person.find({age:18}).explain({Run:true})
--索引
> db.scott.person.createIndex("idx_person_age",{"age":1},true) --唯一索引
> db.scott.person.createIndex("idx_person_age",{"age":1},false) --普通索引
> db.scott.person.createIndex("idx_person_age",{"age":-1},false) --反向索引
> db.scott.person.listIndexes() --查看索引
--指定索引hint和use_index
//nosql写法:
> db.scott.person.find({age:18}).hint({"":"idx_person_age"}).explain() --强制走索引
> db.scott.person.find({age:18}).hint({"":null}).explain() --强制走全表
//sql写法:
> db.exec("select * from scott.t_test where yxbz='未停用' and myl>=90 /*+use_index(idx_test_yxbz)*/")
> db.exec("select * from scott.t_test where yxbz='未停用' and myl>=90 /*+use_index(idx_test_myl)*/")
> db.exec("select * from scott.t_test where yxbz='未停用' and myl>=90 /*+use_index(NULL)*/") --不使用索引
> db.exec("select t1.a, t2.b from foo.bar1 as t1 inner join foo.bar2 as t2 on t1.a = t2.b /*+use_index(t1, idx_bar1_a) use_index(t2, idx_bar2_b) use_hash()*/")
巨杉数据库执行计划和索引的使用
最新推荐文章于 2022-03-21 16:06:14 发布