-
Type: Improvement
-
Resolution: Duplicate
-
Priority: Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: Querying
The cursor field for an explain() may look like this:
{ "cursor" : "BtreeCursor x_1 reverse multi" }Rather than storing all of this information in the same field, we could break it up in to separate fields:
{ "cursor" : "BtreeCursor",
"index":
,
"iterators": ["reverse", "multi"]
}
Not sure on the name of the last one, but you get the idea.
- related to
-
SERVER-10448 Revamp explain() formatting
- Closed