Re: restrict fuzzy search to longer words

2012-01-23 Thread Ian Lea
Not sure what you mean by integration. The suggestion is all about queries and query parsing, so query time. -- Ian. On Mon, Jan 23, 2012 at 3:44 PM, Lance wrote: > Hi Ian, > > Thanks for your help. I was just checking to see if my solr/lucene developer > understands this. He's in India. > H

Re: restrict fuzzy search to longer words

2012-01-23 Thread Lance
Hi Ian, Thanks for your help. I was just checking to see if my solr/lucene developer understands this. He's in India. He says this takes place at the time of integration. Is that correct? - Lance On Jan 20, 2012, at 3:40 PM, Ian Lea wrote: No idea about solr,

Re: restrict fuzzy search to longer words

2012-01-20 Thread Ian Lea
No idea about solr, but in lucene if you build your own FuzzyQuery via new FuzzyQuery(...) all the constructors take a Term so you could skip short terms. But there doesn't appear to be anything built in. If you are using the query parser you could probably make your own subclass of that that use