: To be clear, here is an example of a type from Solr's schema.xml: : : <field name="weight" type="float" indexed="true" stored="true"/> : : Here, the "type" is "float". I'm looking for the complete list of : out-of-the-box types supported.
what you are asking about are just symbolic names that come from <type/> definitions in the schema.xml -- there is no complete list. you can add any arbitrary <type name="foo" .../> you want to your schema, and now you've introduced a new "type" that solr supports. As far as the list of all "FieldType" *classes* that exist in solr out of the box (ie: the list of classes that can be specified in <type/> declarations, that is a bit more straight forward... https://cwiki.apache.org/confluence/display/solr/Field+Types+Included+with+Solr -Hoss http://www.lucidworks.com/