Ignore:
Timestamp:
2013-08-20T10:18:51+12:00 (11 years ago)
Author:
kjdon
Message:

sort fields cannot be multivalued

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs3-extensions/solr/trunk/src/collect/solr-jdbm-demo/etc/conf/schema.xml

    r27850 r28092  
    600600
    601601   <dynamicField name="random_*" type="random" />
    602 <!-- dynamic field for sort/facet fields, which are strings by default. ie not tokenised -->
    603     <dynamicField name="by*" type="string" indexed="true" stored="false" multiValued="true" />
     602<!-- dynamic field for sort/facet fields, which are strings by default. ie not tokenised. Can't be multivalued - ie can only have one value per document -->
     603    <dynamicField name="by*" type="string" indexed="true" stored="false" multiValued="false" />
    604604   <!-- uncomment the following to ignore any fields that don't already match an existing
    605605        field name or dynamic field, rather than reporting them as an error.
Note: See TracChangeset for help on using the changeset viewer.