[ANNOUNCE] CFP open for ApacheCon North America 2016

2015-11-25 Thread Rich Bowen
Community growth starts by talking with those interested in your project. ApacheCon North America is coming, are you? We are delighted to announce that the Call For Presentations (CFP) is now open for ApacheCon North America. You can submit your proposed sessions at http://events.linuxfoundation.o

Re: How To Index With Multiple Priorities

2015-11-25 Thread Mehmet Başal
Thanks Erick, it worked for me.

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: Using ​phrase query in Termfilters

2015-11-25 Thread Kumaran Ramasubramanian
Hi Uwe Thanks for the clarification. ​--​ ​Kumaran R​ On Wed, Nov 25, 2015 at 2:32 PM, Uwe Schindler wrote: > Hi, > > To use a real phrase (more than one term) as part of a filter, you have to > convert the PhraseQuery to a Filter: new QueryWrapperFilter(phrasequery). > The phrasequery can be

RE: Using ​phrase query in Termfilters

2015-11-25 Thread Uwe Schindler
Hi, To use a real phrase (more than one term) as part of a filter, you have to convert the PhraseQuery to a Filter: new QueryWrapperFilter(phrasequery). The phrasequery can be built using QueryBuilder that analyzes the string and splits it into tokens to create a PhraseQuery: https://goo.gl/HDhn

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:

Using ​phrase query in Termfilters

2015-11-25 Thread Kumaran Ramasubramanian
Hi All, Am using lucene 4.10.4. Is it right to add analyzed multi valued fields & phrase query for the same field in boolean filter. i believe we could not apply analyzers to values in filters. So am not getting results for those filters' match. String phraseTerm = "hello world" > Term term =