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 2006/05/12 20:22:23 UTC

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

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

------------------------------------------------------------------------------
  
  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 it's full package name, or the "solr" alias if it is in the default Solr pacakge.  For common numeric types (integer, float, etc...) there are multiple implimentations provided depending on your needs.
+ 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 pacakge.  For common numeric types (integer, float, etc...) there are multiple implementations provided depending on your needs.
  
    Common options that field types can have are...
  
@@ -43, +43 @@

  
  == Miscellaneous Settings ==
  
- In addition to the `<fieldtypes>` and `<fields>` sections o the schema, there are several other declarations that can appear in your schema....
+ In addition to the `<fieldtypes>` and `<fields>` sections of the schema, there are several other declarations that can appear in your schema....
  
  === The Unique Key Field ===