Correction: Wildcard and Fuzzy queries in GermanAnalyzer

2003-02-24 Thread Volker Luedeling
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:

Wildcard and Fuzzy queries in GermanAnalyzer

2003-02-24 Thread Volker Luedeling
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

Problem with tokenizing/stemming in GermanAnalyzer

2003-02-17 Thread Volker Luedeling
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

Number range search through Query subclass

2003-02-14 Thread Volker Luedeling
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