a capital letter). Take a word like "genaugenommen", for
example. It will be stemmed to "nomm", and no real fuzzy or wildcard
evaluation is possible.
-----Original Message-
From: Volker Luedeling
Sent: Montag, 24. Februar 2003 11:58
To: [EMAIL PROTECTED]
Subject:
Hi,
I have noticed that FuzzyQueries and WildcardQueries don't do stemming.
Since all terms in the index are in stemmed forms, this causes some
problems:
"Etagenwohnung" gets stemmed to "nwohnung". So a search for
"Etagenwohnung will find "Etagenwohnung" and "nwohnung".
Fuzzy search for "Etagenw
Hi,
my application uses a GermanAnalyzer for tokenizing a search string and
constructing Query classes:
Analyzer an = new
org.apache.lucene.analysis.de.GermanAnalyzer();
TokenStream ts = an.tokenStream(fieldName, new
StringReader(fieldText));
I have noticed a strange problem with
Hi,
I am writing an application that constructs Lucene searches from XML queries. Each
item from the XML is represented by a Query of the corresponding type. I have a
problem when I try to search for number ranges, since RangeQuery compares strings, not
numbers, so 15 < 155 < 20. What I need i