I am using solr 4.6 and I have a field name content name defined in solr with indexed & stored as true.
<field name="content_name" type="string" indexed="true" stored="true"/>
Also i have defined this field in copy field
<copyField source="content_name" dest="text"/>
I uploaded a content named abc.txt & when i try to search in solr with keyword abc, it does not return any results. I need to put either abc* or abc.xml to get this document.
Any way to fix this issue?
Regards.