HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySubmit a ticketLog In
GitHubNuGetDev CommunitySubmit a ticket

Architecture and languages

Describes built-in functionality and the underlying technology, and supported languages in Optimizely Search & Navigation.

Optimizely Search & Navigation is a powerful, scalable query platform that can index and query large amounts of structured or unstructured data of any type, create custom search functionality, and build advanced navigation for non-hierarchical content.

The following functionality is included:

📘

Note

To ensure maximum availability and scaling flexibility, Optimizely Search & Navigation uses dynamic IP ranges. If you for example require whitelisting of IP addresses in the firewall, make sure that your firewall supports domain-based whitelisting.

Architecture

Optimizely Search & Navigation consists of a back-end software service and a front-end facing client used for building the site search functionality. Various integration options are available for integrating Search & Navigation with Optimizely Content Management System (CMS), Optimizely Customized Commerce, and other platforms. Optimizely Search & Navigation is the default search solution when running CMS using the Optimizely Digital Experience Platform cloud service.

Behind the scenes, numerous back-end systems are used for provisioning, indexing, querying, and monitoring the service based on modern infrastructure components.

Provisioning of service account and index

Indexing content

Querying content

REST API

Optimizely Search & Navigation is built using the Elasticsearch search engine. The Optimizely Search & Navigation API enforces several conventions and restrictions to be aware of, such as adding mappings (automatically handled by the conventions) and adding and removing indexes.

Integration

Optimizely Search & Navigation is the foundation for search functionality in CMS and Optimizely Customized Commerce. It is integrated using a .NET-based client API, and interaction with the REST API through JavaScript is done using JSON. However, Optimizely Search & Navigation is not limited to being used from .NET.

🚧

Important

Optimizely Search & Navigation does not support direct use of the JSON API, as there is no way to secure the connection without exposing the access key. In general, do not implement client-side requests directly to Optimizely Search & Navigation.

Language support and analysis

You can index any content language with Optimizely Search & Navigation, but a language analyzer is used to get the best search results. This is available for a specific set of content languages. When purchasing Optimizely Search & Navigation, you will order an index and specify analyzer support for a defined group of languages.

Search queries in any of these supported languages will run through the language analyzer, and the search results delivered are richer and more nuanced than for unsupported content languages. While content in unsupported languages is indexed and searchable, no analysis is done. See Elasticsearch Analysis and Analyzers.

The language analyzer breaks down text based on a language's characteristics. For example, the English analyzer might use stemming analysis to identify fish as the root word for fishing, fished, fishes, fisher,_and_fisherman. By understanding how a language's words are constructed, Search & Navigation can recognize several versions of a word as the same term, providing better search results. Likewise, Optimizely Search & Navigation optimization only works with supported languages.

Optimizely Search & Navigation's analysis and optimization features supports the following indexing languages.

Indexing languages with analytics support

  • Arabic
  • Armenian
  • Basque
  • Brazilian
  • Bulgarian
  • Catalan
  • Chinese
  • CJK (Chinese, Japanese, and Korean)
  • Czech
  • Danish
  • Dutch
  • English
  • Finnish
  • French
  • Galician
  • German
  • Greek
  • Hindi
  • Hungarian
  • Indonesian
  • Irish
  • Italian
  • Latvian
  • Norwegian
  • Persian
  • Polish
  • Portuguese
  • Romanian
  • Russian
  • Spanish
  • Swedish
  • Thai
  • Turkish

See also Language-specific queries.

Compound splitting

​​​Many European languages contain _compound words,_such as the English term "steel thermos." In Swedish, that phrase is "ståltermos," one word. Compound words adversely affect relevancy for normal free-text search engines, especially for ecommerce, and can result in lower conversion rates.

Optimizely Search & Navigation uniquely includes a feature called compound splitting, which analyzes each word and discovers compound words. To continue the previous example, a visitor can search for the Swedish word "termos" and get a relevant match for "ståltermos". Most search solutions (including Elasticsearch) do not include such functionality. And solutions that usually employ a less sophisticated approach that does not give the same high relevancy and associated conversion rates.

Compound splitting is available for Swedish and Norwegian.

Turn decompounding on and off

[New in Optimizely.Search & Navigation 12.3.0]

The default query setting is to not decompound the query string. To enable decompounding, use this syntax:

.For("query", x => x.Analyzer = Language.Swedish.Analyzer)

If a user submits a search term fotbollsmatch, the query only matches fotbollsmatch/er/en/… and not (as it did previously) ‘fotboll/ar/en/..’ and match/er/en/….

On the other hand, if a user submits the search term fotboll, the search matches fotboll/ar/en… ,fotbollsmatch/er/en/…, and fotbollsplan/er/en.

See also: Elasticsearch guide