Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The "SchemaXml" page has been changed by AaronDaubman: http://wiki.apache.org/solr/SchemaXml?action=diff&rev1=60&rev2=61 Comment: Note autoGeneratePhraseQueries so somebody else doesn't waste 2days looking for it * `omitTermFreqAndPositions=true|false` <!> [[Solr1.4]] * `omitPositions|false` <!> [[Solr3.4]] * `positionIncrementGap=N` + * `autoGeneratePhraseQueries=true|false` (in schema version 1.4 and later this now defaults to false) `TextField`s can also support Analyzers with highly configurable [[AnalyzersTokenizersTokenFilters|Tokenizers and Token Filters]]. @@ -78, +79 @@ }}} The glob-like pattern in the name attribute must have a "*" only at the start or the end. - Longer patterns will be matched first. if equal size patterns both match, the first appearing in the schema will be used. + Longer patterns will be matched first. if equal size patterns both match, the first appearing in the schema will be used. === Indexing same data in multiple fields === Note that, with textual data, it will often make sense to take what's logically speaking a single field (e.g. product name) and index it into several different Solr fields, each with different field options and/or analyzers. @@ -181, +182 @@ </similarity> </fieldType> ... - </types> + </types> <similarity class="solr.SchemaSimilarityFactory"/> }}}