[
https://issues.apache.org/jira/browse/LUCENENET-485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Christopher Currens resolved LUCENENET-485.
---
Resolution: Fixed
Definitely a porting issue. Thanks for the patch, Sylva
GetPrefixQuery doesn't use analyzers, and it is a well known issue of
Lucene.
Suppose a hypothetical analyzer(with stemming) which stems 'went' as 'go'
and you want to search 'wentworth miller'.
A search like 'went*' would be converted to 'go*' which i guess wouldn't be
what you want.
DIGY
[
https://issues.apache.org/jira/browse/LUCENENET-485?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Christopher Currens updated LUCENENET-485:
--
Attachment: TestFrenchAnalyzer.cs.patch
Here's a patch for tests that should