Reg: Query behavior

2011-04-26 Thread Deepak Konidena
cument that contains the term and nothing else. In general, how would I modify the system in such a way that the documents containing "exact term" are shown first and also the documents with either "exact" or "term" are shown later (without just showing one result). Thanks Deepak Konidena.

Re: Using Fuzzysearch with MultiFieldQueryParser

2011-03-25 Thread Deepak Konidena
FuzzyQuery(...),. ...); >etc > >See BooleanClause.Occur for options on MUST, SHOULD etc. > > >-- >Ian. > >On Thu, Mar 24, 2011 at 5:48 PM, Deepak Konidena > wrote: >> Hi, >> >> I am using MultiFieldQueryParser with a custom analyzer for parsing >>searc

Re: Searching partial names using Lucene

2011-03-25 Thread Deepak Konidena
>> == William, Bob == Robert, Tom == Thomas, etc) which you can leverage >> with GATE's Jape rule language. Alternatively, you could use the same >> data from UIMA using a custom analysis engine (I prefer this route >> because this is all Java, easier learning curve and

Re: Searching partial names using Lucene

2011-03-25 Thread Deepak Konidena
s route >because this is all Java, easier learning curve and maintainability). > >-sujit > >On Thu, 2011-03-24 at 14:31 -0400, Deepak Konidena wrote: >> Hi, >> >> I would like to build a search system where a search for "Dan" would >>also search for &q

Searching partial names using Lucene

2011-03-24 Thread Deepak Konidena
artial tokens to their full firstname or lastnames. But is there an Analyzer in lucene contrib modules or elsewhere that does a similar job for me? Thanks, Deepak Konidena.

Using Fuzzysearch with MultiFieldQueryParser

2011-03-24 Thread Deepak Konidena
, if am assuming anything wrong here. My understanding is that to break individual terms to be searched using different queries, I will need to implement a custom QueryParser. If so, how would I start about implementing that? Thanks Deepak Konidena