Re: Question about solr.WordDelimiterFilterFactory

2012-04-12 Thread Jian Xu
2012 8:01 AM Subject: Re: Question about solr.WordDelimiterFilterFactory WordDelimiterFilterFactory will _almost_ do what you want by setting things like catenateWords=0 and catenateNumbers=1, _except_ that the punctuation will be removed. So 12.34 -> 1234 ab,cd -> ab cd is that "close

Re: Question about solr.WordDelimiterFilterFactory

2012-04-12 Thread Erick Erickson
WordDelimiterFilterFactory will _almost_ do what you want by setting things like catenateWords=0 and catenateNumbers=1, _except_ that the punctuation will be removed. So 12.34 -> 1234 ab,cd -> ab cd is that "close enough"? Otherwise, writing a simple Filter is probably the way to go. Best Erick