to add "fuzzy" lookup for terms?
>
> E.g.:
> "melo" should also bring up "merlot"
>
> > -Ursprüngliche Nachricht-
> > Von: Dawid Weiss [mailto:dawid.we...@gmail.com]
> > Gesendet: Freitag, 6. Mai 2011 11:30
> > An: java-user@
d FSTLookup? Does any of these lookup-classes
> > > > allow case insensitive lookups? My terms are (unfortunately) cased.
> > > >
> > > > What Lookup "sits" behind this suggester
> > > > http://search-lucene.com/m/586gA4ccL11
> > > &
uggested terms
> untouched, i.e. cased.
>
> Clemens
>
> > -Ursprüngliche Nachricht-
> > Von: Dawid Weiss [mailto:dawid.we...@gmail.com]
> > Gesendet: Freitag, 6. Mai 2011 11:12
> > An: java-user@lucene.apache.org
> > Betreff: Re: Using Solr's
-Ursprüngliche Nachricht-
> > > Von: Dawid Weiss [mailto:dawid.we...@gmail.com]
> > > Gesendet: Donnerstag, 5. Mai 2011 15:00
> > > An: java-user@lucene.apache.org
> > > Betreff: Re: Using Solr's (Auto)suggest with plain lucene
> > >
> > > If you
p "sits" behind this suggester
> http://search-lucene.com/m/586gA4ccL11
> here?
>
>
> > -Ursprüngliche Nachricht-
> > Von: Dawid Weiss [mailto:dawid.we...@gmail.com]
> > Gesendet: Donnerstag, 5. Mai 2011 15:00
> > An: java-user@lucene.apache.org
ht-
> Von: Dawid Weiss [mailto:dawid.we...@gmail.com]
> Gesendet: Donnerstag, 5. Mai 2011 15:00
> An: java-user@lucene.apache.org
> Betreff: Re: Using Solr's (Auto)suggest with plain lucene
>
> If you check out the source code of solr/lucene, look at FSTLookup class and
Also, have a look at the patch on this issue:
https://issues.apache.org/jira/browse/LUCENE-2995
That issue factors out spell checking / auto suggest from Lucene &
Solr into a shared module.
Mike
http://blog.mikemccandless.com
On Thu, May 5, 2011 at 8:54 AM, Clemens Wyss wrote:
> I have im
If you check out the source code of solr/lucene, look at FSTLookup class and
FSTLookupTest -- you can populate FSTLookup manually with terms/ phrases
from your index and then use the resulting automaton for suggestions.
Dawid
On Thu, May 5, 2011 at 2:54 PM, Clemens Wyss wrote:
> I have implemen
I have implemented my index (in fact it's a plugable indexing API) in "plain
Lucene". It tried to implement a term suggestion mechanism on my own, being not
to happy so far.
At
http://search-lucene.com/m/0QBv41ssGlh/suggestion&subj=Auto+Suggest
I have seen Solr's auto suggestion for search terms.