db.collection.createIndex({fileName:1},{hidden:true});
db.collection.hideIndex({fileName:1});
#或者
db.collection.hideIndex("索引名称")
db.collection.unhideIndex({fileName:1});
#或者
db.collection.unhideIndex("索引名称");
db.scores.insertMany([
{"userid" : "newbie"},
{"userid" : "abby", "score" : 82},
{"userid" : "nina", "score" : 90}
])
db.getCollection('scores').find({})
db.scores.createIndex(
{ userid: 1 },
{ hidden: true }
);
db.scores.getIndexes()
db.scores.find({userid:"abby"}).explain()
db.scores.unhideIndex( { userid: 1} );
db.scores.getIndexes()
db.scores.find({userid:"abby"}).explain()
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://wwwxz.blog.csdn.net/article/details/124598581
内容来源于网络,如有侵权,请联系作者删除!