Re: lucene performance issues

2008-01-04 Thread Otis Gospodnetic
Oscar, Here are some ideas: - Optimize your index (won't help with synchronization, but will help with search performance) - Consider using the non-compound index format (cca 10% faster) - Wait for 2.3 (soon!) that has some performance improvements (though this synchronization bit is still there

Re: Stemming and highlighting

2008-01-04 Thread markharw00d
Let's say for the query algorithm, the word algorith is also a match, how do the highlighter know that it should also highlight occurrences of the word algorith? (I am not sure it does this anyway) The highlighter knows to highlight stemmed words because both the query terms and the docume

Re: Stemming and highlighting

2008-01-04 Thread Daniel Naber
On Freitag, 4. Januar 2008, Marjan Celikik wrote: > I am a new Lucene user and I would like to know the following. How does > Lucene bring together fuzzy queries and highlighting? You need to call rewrite() on the fuzzy query. This will expand the fuzzy query to all similar terms (e.g. belies~ -

Stemming and highlighting

2008-01-04 Thread Marjan Celikik
Dear all, I am a new Lucene user and I would like to know the following. How does Lucene bring together fuzzy queries and highlighting? Let's say for the query algorithm, the word algorith is also a match, how do the highlighter know that it should also highlight occurrences of the word algo