Skip to content

Commit

Permalink
Merge pull request #12 from tulibraries/BL-1106-update-schema
Browse files Browse the repository at this point in the history
BL-1106 Update solr schema
  • Loading branch information
dkinzer authored Feb 13, 2020
2 parents cb8947f + 6020960 commit ec620ce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
that avoids logging every request
-->

<schema name="Blacklight Demo Index" version="1.5">
<schema name="Temple Library Search" version="1.5">
<!-- attribute "name" is the name of this schema and is only used for display purposes.
Applications should change this to reflect the nature of the search collection.
version="1.4" is Solr's version number for the schema syntax and semantics. It should
Expand Down Expand Up @@ -167,7 +167,7 @@
<fieldType name="text" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.ICUFoldingFilterFactory" />
<filter class="solr.ICUFoldingFilterFactory" /> <!-- NFKC, case folding, diacritics removed -->
<filter class="solr.SnowballPorterFilterFactory" language="English" />
</analyzer>
</fieldType>
Expand Down Expand Up @@ -226,6 +226,7 @@
<analyzer type="index">
<charFilter class="solr.MappingCharFilterFactory" mapping="char-filter-mapping.txt"/>
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.ICUFoldingFilterFactory" /> <!-- NFKC, case folding, diacritics removed -->
<filter class="solr.SynonymGraphFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
<filter class="solr.FlattenGraphFilterFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords_en.txt" />
Expand Down

0 comments on commit ec620ce

Please sign in to comment.