Re: Using Solr's (Auto)suggest with plain lucene

2011-05-06 Thread Dawid Weiss
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@

AW: Using Solr's (Auto)suggest with plain lucene

2011-05-06 Thread Clemens Wyss
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 > > > &

Re: Using Solr's (Auto)suggest with plain lucene

2011-05-06 Thread Dawid Weiss
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

AW: Using Solr's (Auto)suggest with plain lucene

2011-05-06 Thread Clemens Wyss
-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

Re: Using Solr's (Auto)suggest with plain lucene

2011-05-06 Thread Dawid Weiss
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

AW: Using Solr's (Auto)suggest with plain lucene

2011-05-06 Thread Clemens Wyss
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

Re: Using Solr's (Auto)suggest with plain lucene

2011-05-05 Thread Michael McCandless
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

Re: Using Solr's (Auto)suggest with plain lucene

2011-05-05 Thread Dawid Weiss
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

Using Solr's (Auto)suggest with plain lucene

2011-05-05 Thread Clemens Wyss
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.