How can copy 2 fields data to one field on Solr
问题 I have a document in solr with Lat and Lng fields. I need to add a new field called store containing data taken from both the Lat and Lng . I tried to use copyField field but I got the error: Field store is not multivalued and destination for multiple copyFields (2) Here is my configuration: <fields> <field name="lat" type="sdouble" indexed="true" stored="true" required="true" multiValued="false" /> <field name="lng" type="sdouble" indexed="true" stored="true" required="true" multiValued=