mirror of https://github.com/apache/lucene.git
allow facets and text fields to be multi-valued
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@496803 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
718618922c
commit
c7d72e0e5a
|
@ -210,8 +210,8 @@
|
|||
EXAMPLE: name="*_i" will match any field ending in _i (like myid_i, z_i)
|
||||
Longer patterns will be matched first. if equal size patterns
|
||||
both match, the first appearing in the schema will be used. -->
|
||||
<dynamicField name="*_facet" type="string" indexed="true" stored="true"/>
|
||||
<dynamicField name="*_text" type="text" indexed="true" stored="true"/>
|
||||
<dynamicField name="*_facet" type="string" indexed="true" stored="true" multiValued="true"/>
|
||||
<dynamicField name="*_text" type="text" indexed="true" stored="true" multiValued="true"/>
|
||||
</fields>
|
||||
|
||||
<!-- field to use to determine and enforce document uniqueness. -->
|
||||
|
|
Loading…
Reference in New Issue