SOLR-1241: Solr's CharFilter has been moved to Lucene. Remove CharFilter and related classes from Solr and use Lucene's corresponding code:
- <tokenizer class="solr.CharStreamAwareWhitespaceTokenizerFactory"/>
+ <tokenizer class="solr.WhitespaceTokenizerFactory"/>
SOLR-1026: Add protected words support to SnowballPorterFilterFactory. Deprecated EnglishPorterFilterFactory and switched example to use English SnowballPorterFilterFactory instead:
- <filter class="solr.EnglishPorterFilterFactory" protected="protwords.txt"/>
+ <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | schema.xml_.patch | 2.85 KB | robertdouglass |
Comments
Comment #1
Scott Reynolds commentedMarked #529516: Receiving exception with schema.xml and latest nightly as Dup. I didn't know about the EnglishPorterFilterFactory.
Comment #2
robertdouglass commentedHere's the patched schema.xml file. Testing now.
Comment #3
damien tournoud commentedThat's basically what we are using on d.o right now.
Comment #4
robertdouglass commentedThis hasn't seemed to cause any problems and solves the obvious mismatch with solr nightly, so I'm committing to 6.2 for further testing. I'll commit to 6.1 as well in a week or so if no negative feedback ensues.
Comment #5
robertdouglass commentedComment #6
pwolanin commentedcommitted to 6.x-1.x