On Mon, Jan 4, 2010 at 1:20 AM, Shalin Shekhar Mangar <
shalinman...@gmail.com> wrote:
> On Wed, Dec 30, 2009 at 3:07 AM, Prasanna R wrote:
>
> > I looked into the Solr/Lucene classes and found the required
> information.
> > Am summarizing the same for the benefit of those that might refer to t
On Wed, Dec 30, 2009 at 3:07 AM, Prasanna R wrote:
> I looked into the Solr/Lucene classes and found the required information.
> Am summarizing the same for the benefit of those that might refer to this
> thread in the future.
>
> The change I had to make was very simple - make a call to getPre
> >
> > > We do auto-complete through prefix searches on shingles.
> > >
> >
> > Just to confirm, do you mean using EdgeNgram filter to produce letter
> > ngrams
> > of the tokens in the chosen field?
> >
> >
>
>> No, I'm talking about prefix search on tokens produced by a ShingleFilter.
>>
>
> I d
On Wed, Dec 23, 2009 at 10:52 PM, Shalin Shekhar Mangar <
shalinman...@gmail.com> wrote:
> On Thu, Dec 24, 2009 at 2:39 AM, Prasanna R wrote:
>
> > On Tue, Dec 22, 2009 at 11:49 PM, Shalin Shekhar Mangar <
> > shalinman...@gmail.com> wrote:
> >
> > >
> > > > I am curious how an approach that sim
On Thu, Dec 24, 2009 at 2:39 AM, Prasanna R wrote:
> On Tue, Dec 22, 2009 at 11:49 PM, Shalin Shekhar Mangar <
> shalinman...@gmail.com> wrote:
>
> >
> > > I am curious how an approach that simply uses the wildcard query
> > > functionality on an indexed field would work.
> >
> >
> > It works fi
On Tue, Dec 22, 2009 at 11:49 PM, Shalin Shekhar Mangar <
shalinman...@gmail.com> wrote:
>
> > I am curious how an approach that simply uses the wildcard query
> > functionality on an indexed field would work.
>
>
> It works fine as long as the terms are not repeated across documents.
>
>
I do n
@lucene.apache.org
Subject: Re: Implementing Autocomplete/Query Suggest using Solr
On Wed, Dec 23, 2009 at 6:14 AM, Prasanna R wrote:
>
> I am curious how an approach that simply uses the wildcard query
> functionality on an indexed field would work.
It works fine as long as the terms are not
On Wed, Dec 23, 2009 at 6:14 AM, Prasanna R wrote:
>
> I am curious how an approach that simply uses the wildcard query
> functionality on an indexed field would work.
It works fine as long as the terms are not repeated across documents.
> While Solr does not support
> wildcard queries out o
There seem to be a couple of approaches that people have adopted in
implementing a query suggestion / auto completion feature using Solr.
Depending on the situation, one might use the terms component or go the way
of using EdgeNGramFilters and then creating querying the index on the
ngrammed field