In my solr schema there is one dynamic field.
<dynamicField name="jobs_*" type="float" indexed="true"
stored="true"/>
So I have one doc value,
docs: [
{
last_name: "Jain",
state_name: "rajasthan",
mobile_no: "234534564621",
id: "4",
jobs_6554: "6554",
},...]
Now I just want to delete one column, means jobs_6554 not the complete doc.
How it can possible in solr.
So after delete, docs will be.
docs: [
{
last_name: "Jain",
state_name: "rajasthan",
mobile_no: "234534564621",
id: "4"
},...]
--
View this message in context:
http://lucene.472066.n3.nabble.com/how-to-delete-on-column-of-a-doc-in-solr-tp4073587.html
Sent from the Solr - User mailing list archive at Nabble.com.