: values. The Field types ie. sint, slong, sdouble, sfloat are the types which
if you look higher up in your schema, you'll see a <fieldtypes> section where "slong" is defined and mapped to some classname, that class witll contain all of the code showing how your data is being indexed. more then likely you are using the SortableLongField (that's what "slong" is defined as in the example schema) http://lucene.apache.org/solr/api/org/apache/solr/schema/FieldType.html http://lucene.apache.org/solr/api/org/apache/solr/schema/SortableLongField.html -Hoss