Hi, given a dynamic field
<dynamicField name="*_boolean" type="boolean" indexed="true" stored="true" />
There are some other suffix-based fields as well. And some of the fields in document should be ignored, they have "nosolr_" prefix. But defining
<dynamicField name="nosolr_*" type="ignored" indexed="false" stored="false" />
even at the start of schema does not work, field "nosolr_inv_dunning_boolean" is recognized as boolean anyway and shown in search results. Documentation says that "longer patterns will be matched first, if equal size patterns both match, the first appearing in the schema will be used".
What can be done here (except from changing input document)? And, generally,: why would such "longer wins" strategy be used here? What use case does it have?
Best, Artem.