I've got a field in solr - name (with values like Tanya ) and lastname (values like Marinova)
Is it possible to make another CopyField in solr that's a concatenation of these two field
(so it's value should be TanyaMarinova)
Here is my schema.xml file
<field name="meta" type="string" indexed="true" stored="true" />
<copyField source="name" dest="meta" />
can i just aadd
<copyField source="lastname" dest="meta" />