Configuring KeymatchSource.config
InSite Search is designed to have a single record for each Keymatch term specified, so each Keymatch entry is a unique term record. If you add multiple Keymatch entries for the same term—for example in a CSV file—the InSite Search indexer reads the current value in the list and skips the previous entries for the same term value.
If you use a CSV file to specify Keymatch entries, changes to the CSV file trigger the re-indexing of Keymatch content.
- Navigate to KeymatchSource.config and open the file in a text
editor.NoteThis source file can reside anywhere. Generally, the App_Data folder contains KeymatchSource.config. (e.g., [Drive]:\[path-to-DSS-root-directory]\App_Data\KeymatchSource.config).
The example below displays generic code contained within KeymatchSource.config. - Locate the
<Search>
element, and enter the filepath to the Keymatch index files as the value of the@indexLocation
attribute.NoteThe default value is App_Data\KeyMatch_Index.For example, the <Search>
element opening tag will look similar to the following code: - Locate the
<Settings>
element, and set the following attribute values for the nested<add>
elements:ImportantYou must add a *.csv file and/or provide a value for ContentFieldName.- Locate the
<add>
element with CsvFile as the@name
attribute value. In the@value
attribute, enter the filepath to the appropriate CSV file, which contains words that get instruction and definition of the CSV contents.Keep in mind the referenced CSV file has the following table format.Column Description Term Term to match Keymatch results against. KeyMatch | PhraseMatch | ExactMatch Type of match for this entry. Valid values include: - KeywordMatch
- PhraseMatch
- ExactMatch
See KeymatchSource.Config Reference for details about these match types.
ImportantThese values are case sensitive.URL to Content URL that links to the Keymatch result. Descriptive Title Text that will be used when rendering the Keymatch link result. Abstract The abstract provided for the Keymatch result. For example, the CsvFile <add>
element should look similar to the following code:Example CSV File:
- Locate the
<add>
element with ContentFieldName as the@name
attribute value. In the@value
attribute, enter the element root name of a field found within the main index dataset, wherein the Keymatch index is to be created from.ImportantEnsure the element root field name exists in the page type (i.e., schema) for the CMS content you plan to index. If the element nests inside a group element, provide the full element path to the nested element for the@value
attribute.For example, the ContentFieldName <add>
element should look similar to the following code: - Locate the
<add>
element with ContentKeyMatchType as the@name
attribute value. In the@value
attribute, enter the method by which to search against the indexed content.Enter the value in pascal-case. Possible values for the
@value
attribute include:See KeymatchSource.Config Reference for details about each value.Value Description KeywordMatch Any word hit will return results. PhraseMatch Any of the words in conjunction will return results. ExactMatch Must match exactly, or nothing will return. For example, the ContentKeyMatchType
<add>
element should look similar to the following code: - If an
<add>
element with AdditionalFieldForContentSource as the@name
attribute value doesn't already exist, you can create one to index specific field content. For the value , enter the element root name of the field you want to add to the actual page to allow the definition of KeyMatchType. Use the pipe character (|) to delimit fields to index.For example, the following setting will index the Title and Abstract fields: Additional InformationThis value falls back on the global setting, but the per-page setting would be an override on the type. If a field is present and has a valid value, then the field is used instead of the global setting. These element values are indeed and stored for retrieval, but not analyzed.For example, if the Title element is added to this list, then the values for Title display in the returned result set's child elements.
- If an
<add>
element with BatchSize as the@name
attribute value doesn't already exist, you can create one. In the@value
attribute, enter the batch size as an integer for the index to process.
- Locate the
- Locate the
<add>
elements under<Settings>
. You will configure these elements in the next steps.ImportantYou must add a .csv file and/or provide a value for ContentFieldName. - Configure the
<add>
element with the@name="CsvFile"
attribute. In the@value
attribute, enter the filepath to the appropriate .csv file, which contains words that get instruction and definition of the CSV contents.Keep in mind the referenced .csv file has the following table format.
Column Description Term Term to match Keymatch results against. KeyMatch | PhraseMatch | ExactMatch Type of match for this entry. Valid values include: - KeywordMatch
- PhraseMatch
- ExactMatch
See KeymatchSource.Config Reference for details about these match types.
ImportantThese values are case sensitive.URL to Content URL that links to the Keymatch result. Descriptive Title Text that will be used when rendering the Keymatch link result. Abstract The abstract provided for the Keymatch result. For example, the CsvFile
<add>
element should look similar to the following code:Example CSV File:
- Configure the
<add>
element with the@name="ContentFieldName
attribute. In the@value
attribute, enter the element root name of a field found within the main index dataset.Keymatch DEX Search targets the indexed content in this element.
ImportantEnsure the element root field name exists in the page type (i.e., schema) for the CMS content you plan to index. If the element nests inside a group element, provide the full element path to the nested element for the@value
attribute.For example, the ContentFieldName <add>
element will look similar to the following code: - Configure the
<add>
element with the@name="ContentKeyMatchType"
attribute. In the@value
attribute, enter the Keymatch type that will run against the indexed content.Enter the value in pascal-case. Possible values for the
@value
attribute include:Value Description KeywordMatch Any match word will return results. PhraseMatch Any words in secession will return results. ExactMatch Must match exactly or nothing will return. The ContentKeyMatchType
<add>
element will look similar to the following code: - Optional: If the
<add>
element with the@name="AdditionalFieldForContentSource"
attribute doesn't already exist, you can insert this element to index specific field content.For the value, enter the element root name of the field you want to add to the actual page to allow the definition of KeyMatchType. Use the pipe character (|) to delimit fields to index.
For example, the following setting will index the Title and Abstract fields:
Additional InformationThis value falls back on the global setting, but the per-page setting would be an override on the type. If a field is present and has a valid value, then the field is used instead of the global setting. These element values are indexed and stored for retrieval, but not analyzed.For example, if the Title element is added to this list, then the values for Title display in the returned result set's child elements.
- Optional: If the
<add>
element with the@name="BatchSize"
attribute doesn't already exist, you can insert this element to set the batch size. In the@value
attribute, enter the batch size as an integer for the index to process.For example, the BatchSize
<add>
element should look similar to the following code: - Save and close KeymatchSource.config.