Hi, i am currently building a Solr configuration for a rather large search index. To allow for indexing of differently named fields for each dataset, i have includ the following dynamicField:
<dynamicField name="*_index" type="text" indexed="true" stored="true" required="false" /> What i don't like about this, is the fact that all dynamic fields are now being stored. Actually, I only need a single field for each dataset tob e stored. Is there a way to parameterize the stored parameter on a per-field basis or do I have to add a second dynamicField like below to allow that? <dynamicField name="*_index_stored" type="text" indexed="true" stored="true" required="false" /> Thanks in advance! -------------------- Jan-Simon Winkelmann