這期內(nèi)容當中小編將會給大家?guī)碛嘘PMongoDB中怎么查看執(zhí)行計劃方法,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)新互聯(lián)主要從事網(wǎng)站設計、網(wǎng)站制作、網(wǎng)頁設計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務仙桃,十載網(wǎng)站建設經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:18980820575> db.chenfeng.find()
{ "_id" : ObjectId("5714419cf7c81959e12a904e"), "age" : 1, "name" : "duansf" }
{ "_id" : ObjectId("571441a3f7c81959e12a904f"), "age" : 2, "name" : "duansf" }
{ "_id" : ObjectId("571441a7f7c81959e12a9050"), "age" : 3, "name" : "duansf" }
{ "_id" : ObjectId("571441abf7c81959e12a9051"), "age" : 4, "name" : "duansf" }
{ "_id" : ObjectId("571442b0f7c81959e12a9052"), "age" : 5, "name" : "duansf" }
{ "_id" : ObjectId("571442bcf7c81959e12a9053"), "age" : 6, "name" : "duansf" }
>
> db.chenfeng.find().explain()
{
"cursor" : "BasicCursor",
"isMultiKey" : false,
"n" : 6,
"nscannedObjects" : 6,
"nscanned" : 6,
"nscannedObjectsAllPlans" : 6,
"nscannedAllPlans" : 6,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 0,
"server" : "XCC-Duanshufeng:27017",
"filterSet" : false
}
>
加hint強制使用索引方法,這點和關系數(shù)據(jù)庫特別像:
> db.chenfeng.find().hint({age:6}).explain()
{
"cursor" : "BtreeCursor idx_age_6",
"isMultiKey" : false,
"n" : 6,
"nscannedObjects" : 6,
"nscanned" : 6,
"nscannedObjectsAllPlans" : 6,
"nscannedAllPlans" : 6,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 1,
"nChunkSkips" : 0,
"millis" : 135,
"indexBounds" : {
"age" : [
[
{
"$minElement" : 1
},
{
"$maxElement" : 1
}
]
]
},
"server" : "XCC-Duanshufeng:27017",
"filterSet" : false
}
字段說明:
cursor:返回游標類型,有BasicCursor和BtreeCursor,BtreeCursor意味著使用了索引
nscanned:掃描document的行數(shù)
nscannedObjects:掃描對象的數(shù)量
n:返回的文檔行數(shù)
millis:耗時(毫秒)
indexBounds:如果不為空,表示此查詢使用的索引信息
server:MongoDB所在的服務器名字,27017是端口號
索引的限制:
索引名稱不能超過128個字符
每個集合不能超過64個索引
復合索引不能超過31列
上述就是小編為大家分享的MongoDB中怎么查看執(zhí)行計劃方法了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注創(chuàng)新互聯(lián)-成都網(wǎng)站建設公司行業(yè)資訊頻道。
當前標題:MongoDB中怎么查看執(zhí)行計劃方法-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://aaarwkj.com/article32/cocosc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、服務器托管、外貿(mào)網(wǎng)站建設、企業(yè)網(wǎng)站制作、響應式網(wǎng)站、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容