RE: Inverted letters

2008-02-13 Thread Ulrich Vachon
essage d'origine- De : Erick Erickson [mailto:[EMAIL PROTECTED] Envoyé : mardi 12 février 2008 15:58 À : java-user@lucene.apache.org Objet : Re: Inverted letters You should probably think about synonym analyzers, both at index time and query time. Because I think you have a problem h

Re: Inverted letters

2008-02-12 Thread Patrick
Did you take a look at the org.apache.lucene.analysis.ngram.NGramTokenFilter? Or other ngram implementation? Works great for us. Patrick Ulrich Vachon wrote: Hi all, It's possible to use simplely (without java preprocessing, if possible) Lucene to find items with this constraints: I have

Re: Inverted letters

2008-02-12 Thread Erick Erickson
You should probably think about synonym analyzers, both at index time and query time. Because I think you have a problem here Let's say you can do what you ask, at query time transform any of your three options into "clamoxyle". Would it really be satisfactory to your users to then NOT get any

Inverted letters

2008-02-12 Thread Ulrich Vachon
Hi all, It's possible to use simplely (without java preprocessing, if possible) Lucene to find items with this constraints: I have indexed this word : clamoxyle I want to find it with this queries : claomxyle, clamoxile, camoxyle. It is possible? Thank you, Ulrich.