Re: Searching for partial matches

2009-05-04 Thread Erick Erickson
t; Date start = new Date(); > >> >> > >> >> Hits hits = searcher.search(mpquery); > >> >> for(int k = 0; k<100; k++){ > >> >>//when I print the results of the search, none of the values match > >> >> with > >

Re: Searching for partial matches

2009-05-04 Thread Huntsman84
; Depending on your setup and requirements you may need to be aware of >> >> > the performance implications of wild card searching, particularly >> >> > leading wildcards as will be required for the example you give. Se

Re: Searching for partial matches

2009-05-04 Thread Erick Erickson
lists for ngrams. > >> > > >> > Depending on your setup and requirements you may need to be aware of > >> > the performance implications of wild card searching, particularly > >> &g

Re: Searching for partial matches

2009-05-04 Thread Huntsman84
>> > -- >> > Ian. >> > >> > On Thu, Apr 30, 2009 at 11:46 AM, Huntsman84 >> wrote: >> >> >> >> Hello, >> >> >> >> >> >> >> >> I am new to Lucene, and I don't know if it is possible to

Re: Searching for partial matches

2009-05-04 Thread Erick Erickson
don't know if it is possible to obtain results > >> providing part of the keyword. > >> > >> > >> > >> For example, if I try to search "in", it should return all matches with > >> "string", "meaning", "trinity"

Re: Searching for partial matches

2009-05-04 Thread Huntsman84
n results >> providing part of the keyword. >> >> >> >> For example, if I try to search "in", it should return all matches with >> "string", "meaning", "trinity"... >> >> >> >> Am I expecting too muc

Re: Searching for partial matches

2009-04-30 Thread Ian Lea
Hi This is possible. There is an entry on wildcards in the FAQ. See also RegexQuery and search the mailing lists for ngrams. Depending on your setup and requirements you may need to be aware of the performance implications of wild card searching, particularly leading wildcards as will be requi

Searching for partial matches

2009-04-30 Thread Huntsman84
much? Thank you so much! -- View this message in context: http://www.nabble.com/Searching-for-partial-matches-tp23313810p23313810.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. ---