Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion site/data/3.12/optimizer-rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@
},
{
"name": "move-filters-into-enumerate",
"description": "Move filters on non-indexed collection attributes into\n`IndexNode` or `EnumerateCollectionNode` to allow early pruning of\nnon-matching documents. This optimization can help to avoid a lot of temporary\ndocument copies.",
"description": "Move filters on non-indexed collection attributes into\n`IndexNode` or `EnumerateCollectionNode` to allow early pruning of\nnon-matching documents. This optimization can help to avoid a lot of temporary\ndocument copies. The optimization can also be applied to enumerations over\nnon-collection array.",
"flags": {
"hidden": false,
"clusterOnly": false,
Expand Down Expand Up @@ -803,6 +803,18 @@
"enterpriseOnly": false
}
},
{
"name": "batch-materialize-documents",
"description": "Batch document lookup from indexes.",
"flags": {
"hidden": false,
"clusterOnly": false,
"canBeDisabled": true,
"canCreateAdditionalPlans": false,
"disabledByDefault": false,
"enterpriseOnly": false
}
},
{
"name": "late-materialization-offset-info",
"description": "Get the search highlighting offsets as late as possible to\navoid unnecessary reads.",
Expand Down