Re: Partial Word Matches

2006-11-12 Thread Erick Erickson
I *knew* it wasn't just a random thing, solely intended to confuse me Thanks for that.. Erick On 11/11/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: : Well, first ~ isn't a wildcard, it's a "fuzzy search" (aka similar terms). : So getting "bellow" for "yellow~" is expected. Although, s

Re: Partial Word Matches

2006-11-11 Thread Chris Hostetter
: Well, first ~ isn't a wildcard, it's a "fuzzy search" (aka similar terms). : So getting "bellow" for "yellow~" is expected. Although, somewhat : confusingly, "lemon orange"~10 is a proximity search. FYI: the meme there is that in the QueryParser ~ denotes something is sloppy or "loose" ... so

RE: Partial Word Matches

2006-11-11 Thread Storey, Jeff
Erick, Very useful answers -- I'll be reading up more with the links you've provided. Thanks. Jeff -Original Message- From: Erick Erickson [mailto:[EMAIL PROTECTED] Sent: Saturday, November 11, 2006 5:51 PM To: java-user@lucene.apache.org Subject: Re: Partial Word Matches

Re: Partial Word Matches

2006-11-11 Thread Erick Erickson
ally, really, really get a copy Thanks for all the help. Jeff -Original Message----- From: Paul Borgermans [mailto:[EMAIL PROTECTED] Sent: Saturday, November 11, 2006 3:06 PM To: java-user@lucene.apache.org Subject: Re: Partial Word Matches Indeed, the only way this can happen as far as I k

RE: Partial Word Matches

2006-11-11 Thread Storey, Jeff
2006 3:06 PM To: java-user@lucene.apache.org Subject: Re: Partial Word Matches Indeed, the only way this can happen as far as I know Lucene is by using a stemmer during indexing, the standard analyzer won't result in such behaviour. hth Paul On 11/11/06, Erick Erickson <[EMAIL PROTECTED

RE: Partial Word Matches

2006-11-11 Thread Storey, Jeff
IndexSearcher to search the parsed query created in Step 3. That's it. Is this the proper way to be doing searching? Thanks. Jeff -Original Message- From: Paul Borgermans [mailto:[EMAIL PROTECTED] Sent: Saturday, November 11, 2006 3:06 PM To: java-user@lucene.apache.org Subject: Re: Partial

Re: Partial Word Matches

2006-11-11 Thread Paul Borgermans
Indeed, the only way this can happen as far as I know Lucene is by using a stemmer during indexing, the standard analyzer won't result in such behaviour. hth Paul On 11/11/06, Erick Erickson <[EMAIL PROTECTED]> wrote: That's not the default behavior, so I'm perplexed. Normally, you have to go

Re: Partial Word Matches

2006-11-11 Thread Erick Erickson
That's not the default behavior, so I'm perplexed. Normally, you have to go to considerable effort to get partial matches What analyzers are you using at both index and query time? Perhaps as short a code snippet as you could make showing this behavior would be a good thing to post. I flat gu