db.update_queue.find().explain();
{
"cursor" : "BasicCursor",
"nscanned" : 6046,
"nscannedObjects" : 6046,
"n" : 6046,
"millis" : 5,
"nYields" : 23,
"nChunkSkips" : 0,
"isMultiKey" : false,
"indexOnly" : false,
"indexBounds" : {
}
}
From the net i found out this
:
nYields は、クエリがタイム スライス アウトされた回数です。つまり、このクエリでは、他のクエリが 23 回許可されたことになります。
What does this mean actually ??
これは、上記に関する私の理解です
これは、現在のクエリを実行する前に、このクエリが 23 回のクエリが実行されるまで待機したということですか??