Removing Solr duplicate values into multivalued field

后端 未结 7 1059
情书的邮戳
情书的邮戳 2021-02-19 03:13

My Solr index contains a multivalued field with duplicate values. How can I remove the duplicates ?

Is it possible to overwrite duplicate values into the multivalued fie

7条回答
  •  梦如初夏
    2021-02-19 03:51

    Or you could handle it in Solr, but in an UpdateRequestProcessor so that it happens before indexing and you don't need to learn about analysis chain.

    You can use java or a number of scripting languages with the ScriptUpdateProcessor

提交回复
热议问题