add doc to point type in example schema

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@893781 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2009-12-24 15:39:51 +00:00
parent ae6541492c
commit b426c68f7d

View File

@ -396,8 +396,14 @@
any data added to them will be ignored outright. -->
<fieldtype name="ignored" stored="false" indexed="false" multiValued="true" class="solr.StrField" />
<!--
A PointType is a Poly Field. It can either declare a subFieldType or a subFieldSuffix
<!-- This point type indexes the coordinates as separate fields (subFields)
If subFieldType is defined, it references a type, and a dynamic field
definition is created matching *___<typename>. Alternately, if
subFieldSuffix is defined, that is used to create the subFields.
Example: if subFieldType="double", then the coordinates would be
indexed in fields myloc_0___double,myloc_1___double.
Example: if subFieldSuffix="_d" then the coordinates would be indexed
in fields myloc_0_d,myloc_1_d
-->
<fieldType name="location" class="solr.PointType" dimension="2" subFieldType="double"/>