The use of aliases allows you to reduce the length of search queries in text form. To use an alias in a search query, you must enter the @ symbol with the name of the alias after it without spaces.
Aliases are stored in the alias dictionary. By default the alias dictionary is empty. Detailed information on managing the alias dictionary can be found on the Alias dictionary page of the Managing dictionaries section.
An example of using aliases for searching is presented below.
C#
stringindexFolder=@"c:\MyIndex\";stringdocumentsFolder=@"c:\MyDocuments\";// Creating an index in the specified folderIndexindex=newIndex(indexFolder);// Indexing documents from the specified folderindex.Add(documentsFolder);// Adding aliases to the alias dictionaryindex.Dictionaries.AliasDictionary.Add("t","(theory OR relativity)");index.Dictionaries.AliasDictionary.Add("e","(Einstein OR Albert)");// Search in the indexSearchResultresult=index.Search("@t OR @e");
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: