Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by StevenParkes: http://wiki.apache.org/solr/SchemaXml ------------------------------------------------------------------------------ == Fields == - The `<fields>` section is where you list the individual `<field>` declarations you wish to use in your documents. Each `<field>` has a name that you will use to reference it when adding documents or executing searches, and an associated type which identifies the name of the fieldtype you wish to use for this field. Individual fields can override the various options (indexed, stored, etc...) that it inherits from it's fieldtype. + The `<fields>` section is where you list the individual `<field>` declarations you wish to use in your documents. Each `<field>` has a name that you will use to reference it when adding documents or executing searches, and an associated type which identifies the name of the fieldtype you wish to use for this field. Individual fields can override the various options (indexed, stored, etc...) that they inherit from their fieldtype. One of the powerful features of Lucene is that you don't have to pre-define every field when you first create your index. Even though Solr provides strong datatyping for fields, it still preserves that flexibility using "Dynamic Fields". Using `<dynamicField>` declarations, you can create field rules that Solr will use to understand what datatype should be used whenever it is given a field name that is not explicitly defined, but matches a prefix or suffix used in a dynamicField.
