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
I am using solrJ to bind documents, and to avoid duplicated values I defined my multivalued field as a HashSet.
@Field("description") public Collection description = new HashSet<>();