MongoDB hint()函数
翻译结果:
hint
英 [hɪnt] 美 [hɪnt]
n.暗示;线索,迹象;提示,注意事项;微量
vt.暗示
vi.暗示,提示
MongoDB hint()函数语法
作用:虽然MongoDB查询优化器一般工作的很不错,但是也可以使用hints来强迫MongoDB使用一个指定的索引。
语法:>db.users.find({gender:"M"},{user_name:1,_id:0}).hint({gender:1,user_name:1})
MongoDB hint()函数示例
rree