Re: Lucene auto suggest

2015-11-25 Thread Alessandro Benedetti
Ok ! According to your requirements , it is a very simple scenario. The *FSTLookup* approach should do the trick for you! Take a look to the official documentation to see the parameter supported [1] ( it is in Solr but it gives to you the idea of the parameter required) . This section of my blog s

Re: Lucene auto suggest

2015-11-25 Thread Bhaskar
*Is analysis needed in the suggester ?* [Bhaskar] No Do you want to provide suggestions according to an analyser processing the suggestions and user query ? Example : user typing receiver And the system returning the Antenna records ? [Bhaskar] No, not needed.. *Do you want infix suggestions ?*

Re: Lucene auto suggest

2015-11-25 Thread Alessandro Benedetti
Let me answer in line : On 23 November 2015 at 17:20, Bhaskar wrote: > Hi, > I have one column in the data base and it is having below data( it can have > 5000 to 3 rows) > > Fenway Antenna Dipole Top CH00 with Coaxial Cable Length 140mm > Fenway Antenna Dipole Side CH01 with Coaxial Cable L

Re: Lucene auto suggest

2015-11-25 Thread Michael Wilkowski
Try some examples from stackoverflow: http://stackoverflow.com/questions/24968697/how-to-implements-auto-suggest-using-lucenes-new-analyzinginfixsuggester-api On Wed, Nov 25, 2015 at 4:18 AM, Bhaskar wrote: > Could you please some help here? > > On Mon, Nov 23, 2015 at 10:50 PM, Bhaskar wrote:

Re: Lucene auto suggest

2015-11-24 Thread Bhaskar
Could you please some help here? On Mon, Nov 23, 2015 at 10:50 PM, Bhaskar wrote: > Hi, > I have one column in the data base and it is having below data( it can > have 5000 to 3 rows) > > Fenway Antenna Dipole Top CH00 with Coaxial Cable Length 140mm > Fenway Antenna Dipole Side CH01 with Co

Re: Lucene auto suggest

2015-11-23 Thread Bhaskar
Hi, I have one column in the data base and it is having below data( it can have 5000 to 3 rows) Fenway Antenna Dipole Top CH00 with Coaxial Cable Length 140mm Fenway Antenna Dipole Side CH01 with Coaxial Cable Length 220mm Fenway Antenna Slot Front CH02 with Coaxial Cable Length 220mm ANTENNA,

Re: Lucene auto suggest

2015-11-23 Thread Alessandro Benedetti
Can you list us your requirements ? Is analysis needed in the suggester ? Do you want infix suggestions ? Do you want fuzzy suggestions ? Suggestions of the whole content of a field or only few tokens ? Starting from that you can take a look to the suggester component and all the different implem