|
1 | 1 | <?xml version="1.0" encoding="UTF-8" ?> |
2 | | -<schema name="Hydra" version="1.5"> |
| 2 | +<schema name="Blacklight-default" version="1.6"> |
3 | 3 | <!-- NOTE: various comments and unused configuration possibilities have been purged |
4 | 4 | from this file. Please refer to http://wiki.apache.org/solr/SchemaXml, |
5 | 5 | as well as the default schema file included with Solr --> |
|
309 | 309 | <types> |
310 | 310 | <fieldType name="string" class="solr.StrField" sortMissingLast="true" /> |
311 | 311 | <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" /> |
312 | | - <fieldType name="rand" class="solr.RandomSortField" omitNorms="true" /> |
| 312 | + <fieldType name="rand" class="solr.RandomSortField" /> |
313 | 313 |
|
314 | 314 | <!-- Default numeric field types. --> |
315 | 315 | <fieldType name="int" class="solr.IntPointField" docValues="true" /> |
|
364 | 364 | <fieldType name="bbox" class="solr.BBoxField" geo="true" distanceUnits="kilometers" numberType="_bbox_coord" storeSubFields="false" /> |
365 | 365 | <fieldType name="_bbox_coord" class="solr.DoublePointField" docValues="true" stored="false" /> |
366 | 366 |
|
367 | | - <fieldType name="text" class="solr.TextField" omitNorms="false"> |
| 367 | + <fieldType name="text" class="solr.TextField"> |
368 | 368 | <analyzer> |
369 | 369 | <tokenizer class="solr.ICUTokenizerFactory" /> |
370 | 370 | <filter class="solr.ICUFoldingFilterFactory" /> <!-- NFKC, case folding, diacritics removed --> |
|
381 | 381 | </fieldType> |
382 | 382 |
|
383 | 383 | <!-- single token analyzed text, for sorting. Punctuation is significant. --> |
384 | | - <fieldtype name="alphaSort" class="solr.TextField" sortMissingLast="true" omitNorms="true"> |
| 384 | + <fieldtype name="alphaSort" class="solr.TextField" sortMissingLast="true"> |
385 | 385 | <analyzer> |
386 | 386 | <tokenizer class="solr.KeywordTokenizerFactory" /> |
387 | 387 | <filter class="solr.ICUFoldingFilterFactory" /> |
|
0 commit comments