I'm using atomic update with Solrj. It works perfectly, but I don’t know how to delete a field within an existing document.
In the Solr tutorial (http://wiki.apache.org/solr/UpdateXmlMessages) they explain how to do it with the xml:
<add>
<doc>
<field name="employeeId">05991</field>
<field name="skills" update="set" null="true" />
</doc>
</add>
Does anyone knows how to do it from SolrJ?
Thanks!