Skip to content

Commit 4093ad5

Browse files
authored
Merge pull request uschindler#7 from rmuir/lucene-example-stemmer-oops
Add missing light stemmer to Lucene API example, consistent with solr and ES
2 parents 5b9cbcd + e678d02 commit 4093ad5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ Analyzer analyzer = CustomAnalyzer.builder(Paths.get("/path/to/german-decompound
118118
"onlyLongestMatch", "true",
119119
"minSubwordSize", "4")
120120
.addTokenFilter(GermanNormalizationFilterFactory.NAME)
121+
.addTokenFilter(GermanLightStemFilterFactory.NAME)
121122
.build();
122123
```
123124

0 commit comments

Comments
 (0)