You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2007/05/09 07:44:53 UTC

[Solr Wiki] Trivial Update of "SchemaXml" by HossMan

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 HossMan:
http://wiki.apache.org/solr/SchemaXml

The comment on the change is:
cleaning up old incubator URLs

------------------------------------------------------------------------------
  
  The `<types>` section allows you define a list of `<fieldtype>` declarations you wish to use in your schema, along with the underlying Solr class that should be used for that type, as well as the default options you want for fields that use that type.
  
- Any subclass of [http://incubator.apache.org/solr/docs/api/org/apache/solr/schema/FieldType.html FieldType] may be used as a field type class, using either its full package name, or the "solr" alias if it is in the default Solr package.  For common numeric types (integer, float, etc...) there are multiple implementations provided depending on your needs, please see SolrPlugins for information on how to ensure that your own custom Field Types can be loaded into Solr.
+ Any subclass of [http://lucene.apache.org/solr/docs/api/org/apache/solr/schema/FieldType.html FieldType] may be used as a field type class, using either its full package name, or the "solr" alias if it is in the default Solr package.  For common numeric types (integer, float, etc...) there are multiple implementations provided depending on your needs, please see SolrPlugins for information on how to ensure that your own custom Field Types can be loaded into Solr.
  
    Common options that field types can have are...