Hi, I'm testing language identification. I've enabled it solrconfig.xml. Here is my dynamic fields at schema:
<dynamicField name="*_en" type="text_en" stored="true" indexed="true" /> <dynamicField name="*_ru" type="text_ru" stored="true" indexed="true" /> So, after indexing, I see that fields are generated: content_en content_ru I copy my fields into a text field: <copyField source="*_en" dest="text"/> <copyField source="*_ru" dest="text"/> Here is my text field: <field name="text" type="text_general" indexed="true" stored="false" multiValued="true"/> I want to let users only search on only *text* field. However, when I copy that fields into *text *field, they are indexed according to text_general. How can I copy *tokens* to *text *field? Kind Regards, Furkan KAMACI