Created
March 27, 2020 00:21
-
-
Save takahirohonda/c64fa8b9a666177263a4e2e8a7be782d to your computer and use it in GitHub Desktop.
solor-synonym-add-field-type.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<fieldType name="productnamemanualsynonyms" | |
class="solr.TextField" | |
positionIncrementGap="500" | |
sortMissingLast="true"> | |
<analyzer> | |
<tokenizer class="solr.StandardTokenizerFactory"/> | |
<filter class="solr.TrimFilterFactory"/> | |
<filter class="solr.SynonymFilterFactory" | |
expand="true" | |
ignoreCase="true" | |
synonyms="synonyms-productname.txt" | |
tokenizerFactory="solr.StandardTokenizerFactory"/> | |
<filter class="solr.LowerCaseFilterFactory"/> | |
</analyzer> | |
</fieldType> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment