Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My schema.xml is splitting product name and then uses RemoveDuplicate to remove duplicated words after split.

    <fieldType name="type_name" class="solr.TextField">
        <analyzer type="index">
            <tokenizer class="solr.PatternTokenizerFactory" pattern="\|| " />
            <filter class="solr.LowerCaseFilterFactory"/>
            <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>

And in query analyzer I see that RemoveDuplicatesTokenFilterFactory did absolutely nothing to duplicated words. Why?

enter image description here

share|improve this question

1 Answer

up vote 3 down vote accepted

If you read Wiki you will see that it only removes duplicates at the same position, which is not the case here.

share|improve this answer
How can duplicate exist in same position? What can cause it? – wormhit Apr 26 '12 at 8:45
2  
Like the Wiki says, stemming tokens in synonyms with similar root for example. – Okke Klein Apr 26 '12 at 8:59
and is there a filter that remove duplicate without considering position? – lulalala Jun 7 '12 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.