Skip to content
Open
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
9 changes: 8 additions & 1 deletion 17/umbraco-cms/reference/configuration/indexingsettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ This section allows you to configure how content is indexed for Examine.
"Umbraco": {
"CMS": {
"Indexing": {
"ExplicitlyIndexEachNestedProperty": true
"ExplicitlyIndexEachNestedProperty": true,
"BatchSize": 10000
}
}
}
Expand All @@ -25,3 +26,9 @@ When indexing content, each property contained within certain complex editors ar
The complex editors are also indexed to their own separate fields, which then contains "the sum" of all properties contained within.

In some cases this yields a lot of fields in the index, which can lead to errors when performing searches. Changing this setting to `false` can mend that issue. It prevents each contained property from being written to the index in its own field.

## BatchSize

For large indexing operations (such as rebuilding an index), content is loaded from the database and indexed in batches.

Depending on the complexity of your content model, lowering the batch size might speed up these operations.