solr/conf/schema.xml in blacklight_range_limit-7.0.1 vs solr/conf/schema.xml in blacklight_range_limit-7.1.0

- old
+ new

@@ -173,10 +173,20 @@ <!-- Type used to index the lat and lon components for the "location" FieldType --> <dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false" /> + <!-- location (_ll...) --> + + <dynamicField name="*_lli" type="location" stored="false" indexed="true" multiValued="false"/> + <dynamicField name="*_llim" type="location" stored="false" indexed="true" multiValued="true"/> + + <dynamicField name="*_lls" type="location" stored="true" indexed="false" multiValued="false"/> + <dynamicField name="*_llsm" type="location" stored="true" indexed="false" multiValued="true"/> + <dynamicField name="*_llsi" type="location" stored="true" indexed="true" multiValued="false"/> + <dynamicField name="*_llsim" type="location" stored="true" indexed="true" multiValued="true"/> + <dynamicField name="*_srpt" type="location_rpt" stored="true" indexed="true" multiValued="true" /> <dynamicField name="*_bbox" type="bbox" stored="true" indexed="true" /> <!-- suggest and spelling --> @@ -251,10 +261,13 @@ The subFields are an implementation detail of the fieldType, and end users normally should not need to know about them. --> <fieldType name="point" class="solr.PointType" dimension="2" subFieldSuffix="_d"/> + <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. --> + <fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/> + <!-- An alternative geospatial field type new to Solr 4. It supports multiValued and polygon shapes. For more information about this and other Spatial fields new to Solr 4, see: http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4 --> <fieldType name="location_rpt" class="solr.SpatialRecursivePrefixTreeFieldType" @@ -335,17 +348,19 @@ <fieldType name="textSpell" class="solr.TextField" positionIncrementGap="100" > <analyzer> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/> + <filter class="solr.StandardFilterFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> </fieldType> <fieldType name="textSuggest" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.KeywordTokenizerFactory"/> + <filter class="solr.StandardFilterFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer> </fieldType>