The merge operation is designed to combine two or more indexes into one index to accelerate the search and to simplify the work with indexes. When merging, only the index at which the Merge method was called is changed. This index as a result of the operation contains all the documents that were contained in all indexes together. The second index or index repository after the merge can be deleted to free up disk space.
The MergeOptions class contains a property for specifying a cancellation object, as well as a property for specifying whether the operation will be performed asynchronously. By default, index merging operation is performed synchronously.
The Index class has method overloads for merging a single index and a whole index repository. Before performing a merge, checks are made to ensure that the indexes are of the same type. Merging is performed only on those indexes that have the same IndexType value as the index on which the Merge method is called.
The following example demonstrates the merging of two indexes.
C#
stringindexFolder1=@"c:\MyIndex1\";stringindexFolder2=@"c:\MyIndex2\";stringdocumentsFolder1=@"c:\MyDocuments1\";stringdocumentsFolder2=@"c:\MyDocuments2\";Indexindex1=newIndex(indexFolder1);// Creating index1index1.Add(documentsFolder1);// Indexing documentsIndexindex2=newIndex(indexFolder2);// Creating index2index2.Add(documentsFolder2);// Indexing documentsMergeOptionsoptions=newMergeOptions();options.Cancellation=newCancellation();// Creating cancellation object to be able to cancel the oparation// Merging index2 into index1// Files of index2 will not be changedindex1.Merge(index2,options);
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: