Re: Fuzzy search change

2009-06-19 Thread Varun Dhussa
Hi, I can port the code to java. I do not know the Lucene file structures etc. as of now. So if someone with experience on that to store trigrams and index them is can work on that part, I can port the rest of the code. Regards Varun Dhussa Product Architect CE InfoSystems (P) Ltd http://www.ma

Re: Fuzzy search change

2009-06-18 Thread eks dev
l McCandless > To: java-dev@lucene.apache.org > Sent: Thursday, 18 June, 2009 16:29:59 > Subject: Re: Fuzzy search change > > This would make an awesome addition to Lucene! > > This is similar to how Lucene's spellchecker identifies candidates, if > I understand it right. > > W

Re: Fuzzy search change

2009-06-18 Thread Michael McCandless
This would make an awesome addition to Lucene! This is similar to how Lucene's spellchecker identifies candidates, if I understand it right. Would you be able to port it to java? Mike On Thu, Jun 18, 2009 at 7:12 AM, Varun Dhussa wrote: > Hi, > > I wrote on this a long time ago, but haven't fol

Fuzzy search change

2009-06-18 Thread Varun Dhussa
Hi, I wrote on this a long time ago, but haven't followed it up. I just finished a C++ implementation of a spell check module in my software. I borrowed the idea from Xapian. It is to use a trigram index to filter results, and then use Edit Distance on the filtered set. Would such a solution