I have added a signature field to schema and setup dedupe handler in 
solrconfig.xml as per docs, however docs say:

“Be sure to change your update handlers to use the defined chain, as below:”

Umm, WHERE do you change the update handler to use the defined chain? Is this 
in one of config xmls or this statement for a dataimport config?

I am updating the index via solrj
             SolrInputDocument up = new SolrInputDocument();
             up.addField("id",f.getCanonicalPath());
             up.addField("access",access);
             up.addField("title",metadata.get("title"));
             up.addField("author",metadata.get("author"));
             String content = textHandler.toString();
             up.addField("_text_",content);
             solr.add(up);

Should dedupe be part of this code??
Notice: This email and any attachments are confidential and may not be used, 
published or redistributed without the prior written consent of the Institute 
of Geological and Nuclear Sciences Limited (GNS Science). If received in error 
please destroy and immediately notify GNS Science. Do not copy or disclose the 
contents.

Reply via email to