Documentation

{{docApp.title}}

{{docApp.description}}

How can we help?

{{docApp.searchError}}
{{product.name}}

Searching in {{docApp.searchFilterBySpecificBookTitle}}

{{docApp.searchResultFilteredItems.length}} results for: {{docApp.currentResultsSearchText}} in {{docApp.searchFilterBySpecificBookTitle}}
Search results have been limited. There are a total of {{docApp.searchResponse.totalResultsAvailable}} matches.

You have an odd number of " characters in your search terms - each one needs closing with a matching " character!

{{docApp.libraryHomeViewProduct.title || docApp.libraryHomeViewProduct.id}}

{{docApp.libraryHomeViewProduct.description}}

  1. {{book.title}}

{{group.title || group.id}}

{{group.description}}

  1. {{book.title}}

{{group.title}}

Simple Types - indexHighlighterType

Description

Selects the Elasticsearch highlighter type used to produce highlighted fragments.

    'plain' (default) is the Elasticsearch plain highlighter. It re-analyzes the field at query time and produces fragments
    of fixed character length. Fragment boundaries do not respect word, sentence or markup boundaries, so a fragment can
    begin or end partway through any expression.

    'unified' is the Elasticsearch unified highlighter. Fragment boundaries are sentence-aware (sentence boundary detection)
    so fragments are much more likely to begin and end at natural sentence breaks. The configured highlightLength is treated
    as a target rather than a hard cap. Works on any text field; performs best when the field has 'offsets' index_options
    configured, otherwise the field is re-analyzed at query time.

    'fvh' is the Elasticsearch Fast Vector Highlighter. Fastest on large documents with many matches but requires the
    target field to have 'term_vector: with_positions_offsets' set in its mapping at index time. Will error at query time
    if used against a field without that mapping. Most current ESP indices do NOT have term vectors enabled.

Value Constraints

Only the following values are permitted for this type, passing any other value will generate a validation error.

Allowed Value Mapped Value Description
plain 0 No description provided
unified 1 No description provided
fvh 2 No description provided
In This Document