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 个查询后才执行当前查询?