Created
November 10, 2015 12:05
-
-
Save shenzhuxi/7b03c5981808f3972630 to your computer and use it in GitHub Desktop.
This file contains 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
Drupal 8.x search_api schema with ICUTokenizerFactory | |
<analyzer type="index"> | |
<charfilter class="solr.HTMLStripCharFilterFactory"/> | |
<charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/> | |
<tokenizer class="solr.ICUTokenizerFactory"/> | |
<filter class="solr.StopFilterFactory" | |
ignoreCase="true" | |
words="stopwords.txt" | |
/> | |
<filter class="solr.WordDelimiterFilterFactory" | |
protected="protwords.txt" | |
generateWordParts="1" | |
generateNumberParts="1" | |
catenateWords="1" | |
catenateNumbers="1" | |
catenateAll="0" | |
splitOnCaseChange="0" | |
preserveOriginal="1"/> | |
<filter class="solr.LengthFilterFactory" min="2" max="100" /> | |
<filter class="solr.LowerCaseFilterFactory"/> | |
<filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/> | |
<filter class="solr.RemoveDuplicatesTokenFilterFactory"/> | |
</analyzer> | |
Single charactor token and query with quotes | |
<analyzer type="index"> | |
<charfilter class="solr.HTMLStripCharFilterFactory"/> | |
<charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/> | |
<tokenizer class="solr.ClassicTokenizerFactory"/> | |
<filter class="solr.StopFilterFactory" | |
ignoreCase="true" | |
words="stopwords.txt" | |
/> | |
<filter class="solr.WordDelimiterFilterFactory" | |
protected="protwords.txt" | |
generateWordParts="1" | |
generateNumberParts="1" | |
catenateWords="1" | |
catenateNumbers="1" | |
catenateAll="0" | |
splitOnCaseChange="0" | |
preserveOriginal="1"/> | |
<filter class="solr.LowerCaseFilterFactory"/> | |
<filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/> | |
<filter class="solr.RemoveDuplicatesTokenFilterFactory"/> | |
</analyzer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment