hi,

> So, can I index and facet these fields, without describe then in my schema?
>
> I will first try with dynamic fields, but I'm not sure it's going to work.

we do all our facet fields in this way, with just general string field
for single/multivalued
fields:
<!-- dynamic facet fields single/multiple valued fields for faceting -->
         <dynamicField name="*_fcm" type="string" indexed="true"
stored="false" multiValued="true"/>
         <dynamicField name="*_fc" type="string" indexed="true"
stored="false" multiValued="false"/>

and faceting works...

but you will still need to know the specific name of the field(s) to use in the
facet.field URL parameter (i.e. as long as your UI knows!).

hope that helps

bec :)

Reply via email to