Re: Search for similar terms

2003-06-03 Thread Eric Jain
TermEnum enum = reader.terms(new Term(field, start)); That cuts down the time from 5s to 5ms, thanks a lot! I haven't found a way to stop the enumeration once I am sure that the input term can not match any more :) Being able to throw a StopItException from termCompare would seem like a

Re: Search for similar terms

2003-06-02 Thread Eric Jain
have a look at the FuzzyTermEnum class in Lucene. The FuzzyTermEnum class is truely useful... if I could get it to be a bit faster. By faster I mean something in the order of one second for a half gigabyte index; currently the best I get is five seconds. What I am trying to accomplish: - If

AW: Search for similar terms

2003-06-02 Thread Karsten Konrad
Cc: Lucene Users List Betreff: Re: Search for similar terms have a look at the FuzzyTermEnum class in Lucene. The FuzzyTermEnum class is truely useful... if I could get it to be a bit faster. By faster I mean something in the order of one second for a half gigabyte index; currently the best I

Re: Search for similar terms

2003-05-31 Thread David_Birthwell
: Subject: Search for similar terms 05/30/03 05:15 AM Please respond

Re: Search for similar terms

2003-05-31 Thread Dario Dentale
and multiplying it to the frequency in the indexed documents can obtain a score. Do you think that this is a wrong way? Regards, Dario - Original Message - From: [EMAIL PROTECTED] To: Lucene Users List [EMAIL PROTECTED] Sent: Friday, May 30, 2003 3:51 PM Subject: Re: Search for similar terms

Re: Search for similar terms

2003-05-31 Thread Dario Dentale
Hi, can you suffer me a link with an overview document of this method? I couldn't find. Thanks, Dario - Original Message - From: Leo Galambos [EMAIL PROTECTED] To: Lucene Users List [EMAIL PROTECTED] Sent: Friday, May 30, 2003 4:25 PM Subject: Re: Search for similar terms You need

Re: Search for similar terms

2003-05-31 Thread Leo Galambos
. Thanks, Dario - Original Message - From: Leo Galambos [EMAIL PROTECTED] To: Lucene Users List [EMAIL PROTECTED] Sent: Friday, May 30, 2003 4:25 PM Subject: Re: Search for similar terms You need DASG+Lev over the dictionary. The boundary could be the highest idf of the terms. It was solved

AW: Search for similar terms

2003-05-31 Thread Karsten Konrad
good. Regards, Karsten -Ursprüngliche Nachricht- Von: Dario Dentale [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 30. Mai 2003 19:05 An: Lucene Users List Betreff: Re: Search for similar terms Thanks, for the answer. I was searching for a solution not based on a dictionary