Re: Edismax and prefixlen for fuzzy queries

2013-12-11 Thread Furkan KAMACI
Hi; I've read the issue. When I have time I will apply a patch for it. Thanks; Furkan KAMACI 11 Aralık 2013 Çarşamba tarihinde Ahmet Arslan adlı kullanıcı şöyle yazdı: > Somehow relevant jira : https://issues.apache.org/jira/browse/SOLR-218 > > > > On Wednesday, December 11, 2013 2:15 AM, Furk

Re: Edismax and prefixlen for fuzzy queries

2013-12-11 Thread Ahmet Arslan
Somehow relevant jira : https://issues.apache.org/jira/browse/SOLR-218 On Wednesday, December 11, 2013 2:15 AM, Furkan KAMACI wrote: Hi; I've debugged edismax of Solr 4.5.1 and I see that line: *case FUZZY: return super.getFuzzyQuery(field, val, flt);* it calls that one: * // called from p

Re: Edismax and prefixlen for fuzzy queries

2013-12-10 Thread Furkan KAMACI
Hi; I've debugged edismax of Solr 4.5.1 and I see that line: *case FUZZY: return super.getFuzzyQuery(field, val, flt);* it calls that one: * // called from parser* * protected Query getFuzzyQuery(String field, String termStr, float minSimilarity) throws SyntaxError {* *termStr = analyzeIfM

Edismax and prefixlen for fuzzy queries

2013-12-10 Thread Mhd Wrk
Does edismax query parser support prefixlen (length of common (non-fuzzy) prefix)? Thanks