Created
February 10, 2020 08:00
-
-
Save stormworm29/878a05f410f294148d04a024b7c8c0da to your computer and use it in GitHub Desktop.
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="string_ignore_case" class="solr.TextField" sortMissingLast="true" omitNorms="true" > | |
| <analyzer> | |
| <tokenizer class="solr.KeywordTokenizerFactory"/> | |
| <filter class="solr.LowerCaseFilterFactory"/> | |
| </analyzer> | |
| </fieldType> | |
| <fieldType name="text_autofill" class="solr.TextField" positionIncrementGap="100"> | |
| <analyzer type="index"> | |
| <tokenizer class="solr.StandardTokenizerFactory"/> | |
| <filter class="solr.StopFilterFactory" words="stopwords.txt"/> | |
| <filter class="solr.StandardFilterFactory"/> | |
| <filter class="solr.LowerCaseFilterFactory"/> | |
| <filter class="solr.EdgeNGramFilterFactory" minGramSize="1" maxGramSize="15" /> | |
| </analyzer> | |
| <analyzer type="query"> | |
| <tokenizer class="solr.StandardTokenizerFactory"/> | |
| <filter class="solr.StopFilterFactory" words="stopwords.txt"/> | |
| <filter class="solr.StandardFilterFactory"/> | |
| <filter class="solr.LowerCaseFilterFactory"/> | |
| </analyzer> | |
| </fieldType> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment