[jira] [Resolved] (LUCENENET-485) IndexOutOfRangeException in FrenchStemmer

2012-04-17 Thread Christopher Currens (Resolved) (JIRA)
[ 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

RE: Wildcard queries are not analyzed

2012-04-17 Thread Digy
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

[jira] [Updated] (LUCENENET-485) IndexOutOfRangeException in FrenchStemmer

2012-04-17 Thread Christopher Currens (Updated) (JIRA)
[ 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