Re: Bi Gram token generation with fuzzy searches

2018-02-07 Thread Sravan Kumar
@Emir : The 'sow' parameter in edismax along with the nested query '_query_' works. Tuning has to be done for desired relevancy. @Walter: It would be nice to have SOLR-629 integrated into the project. As Emir suggested, _query_ caters to my need by by applying fuzzy parameter to the query.

Re: Bi Gram token generation with fuzzy searches

2018-02-07 Thread Walter Underwood
I think you need the feature in SOLR-629 that adds fuzzy to edismax. https://issues.apache.org/jira/browse/SOLR-629 The patch on that issue is for Solr 4.x, but I believe someone is working on a new patch. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my

Re: Bi Gram token generation with fuzzy searches

2018-02-07 Thread Emir Arnautović
Hi Sravan, Edismax has ’sow’ parameter that results in edismax to pass query to field analysis, but not sure how it will work with fuzzy search. What you might do is use _query synthax to separate shingle and non shingle queries, e.g. q=_query({!edismax sow=false qf=title_bigrams}$v) OR

Bi Gram token generation with fuzzy searches

2018-02-07 Thread Sravan Kumar
We have the following two fields for our movie title search - title without symbols a custom analyser with WordDelimiterFilterFactory, SynonymFilterFactory and other filters to retain only alpha numeric characters. - title with word bi grams a custom analyser with solr.ShingleFilterFactory to