"It is strongly recommended that names consist of alphanumeric or underscore characters only and not start with a digit. This is not currently strictly enforced."
https://solr.apache.org/guide/8_11/field-type-definitions-and-properties.html#general-properties Better stick to that recommendation, else there may be some part of Solr that assumes something about field names that will not work. Jan > 19. aug. 2022 kl. 06:24 skrev zhourui <[email protected]>: > > I am using dynamicField like: > <dynamicField > name="data_string_*"type="string"indexed="true"stored="true"docValues="true"/> > the inputDocument is: > { > "data_string_foo":"foo", > "data_string_测试字段":"bar" > } > NowI select the document,output is: > { > "data_string_foo":"foo", > "data_string_____":"bar" > } > Itseems that it does not support Chinesefield names, > how can I make solr support ChinesedynamicField? > Thanksin advance.
