Synonym search allows you to find not only the words specified in the search query, but also the synonyms, words that means the same.
To enable synonym search, you must set the UseSynonymSearch property of the SearchOptions class to true. By default, synonym search is disabled.
The default synonym dictionary contains synonyms only for the English language. To manage the synonym dictionary, see the Synonym dictionary page in the Managing dictionaries section.
The following example demonstrates the synonym search.
C#
stringindexFolder=@"c:\MyIndex\";stringdocumentsFolder=@"c:\MyDocuments\";// Creating an index in the specified folderIndexindex=newIndex(indexFolder);// Indexing documents from the specified folderindex.Add(documentsFolder);// Creating a search options objectSearchOptionsoptions=newSearchOptions();options.UseSynonymSearch=true;// Enabling synonym search// Search for the word 'answer'// In addition to the word 'answer', the words 'reply' and 'response' will also be foundSearchResultresult=index.Search("answer",options);
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: