Re: Help for german queries

2002-10-02 Thread Marc Guillemot
say if it does overstemming. I > commented out the expression below > > // "t" occurs only as suffix of verbs. > else if ( buffer.charAt( buffer.length() - 1 ) == 't' /*&& > !uppercase*/ ) { > buffer.deleteCharAt( buffer.length() - 1 ); >

Re: Help for german queries

2002-10-02 Thread Marc Guillemot
all it a bug) that > treats words ending with "t" differently if they start with a capital or > non-capital letter. Are you sure you didn't type "geschäft" and "Geschaeft"? > Cause that's supposedly stemmed differently. > > --Clemens > >

Help for german queries

2002-10-01 Thread Marc Guillemot
Hi, I've performed some tests with Lucene for german indexation/search but I don't get the results I expected: - Umlaut: search for: - "Geschäft" -> x results - "Geschaeft" -> no result Is there an option in the standard german classes to make the 2 searches above equivalent? - Composed