> I am trying to configure automatic > deduplication for SOLR 1.4 in Vufind. I followed: > > http://wiki.apache.org/solr/Deduplication > > Actually nothing happens. All records are being imported > without any deduplication.
Does "being imported" means you are using dataimporthandler? If yes you can use this to enable DIH with dedupe. <requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler"> <lst name="defaults"> <str name="config">data-config.xml</str> <str name="update.processor">dedupe</str> </lst> </requestHandler>