Re: Minimum Match Query

2020-05-13 Thread ART GALLERY
check out the videos on this website TROO.TUBE don't be such a sheep/zombie/loser/NPC. Much love! https://troo.tube/videos/watch/aaa64864-52ee-4201-922f-41300032f219 On Thu, May 7, 2020 at 2:11 PM Russell Bahr wrote: > > Thank you Emir, we will give this a try. > > Russ > > > On Thu, May 7, 2020

Re: Minimum Match Query

2020-05-07 Thread Russell Bahr
Thank you Emir, we will give this a try. Russ On Thu, May 7, 2020 at 12:55 AM Emir Arnautović < emir.arnauto...@sematext.com> wrote: > Hi Russel, > You are right about mm - it is about min term matches. Frequencies are > usually used to determine score. But you can also filter on number of >

Re: Minimum Match Query

2020-05-07 Thread Emir Arnautović
Hi Russel, You are right about mm - it is about min term matches. Frequencies are usually used to determine score. But you can also filter on number of matches using function queries: fq={!frange l=3}sum(termfreq(field, ‘barker’), termfreq(field, ‘jones’), termfreq(field, ‘baker’)) It is not

Re: Minimum Match Query

2020-05-06 Thread Russell Bahr
Hi Atita, We actually looked into that and it does not appear to match based on a single phrase, but says that it must match a certain percentage of the listed phrases. What we need is something that would match based on a single phrase appearing a minimum number of times i.e. "Barker" minimum

Re: Minimum Match Query

2020-05-06 Thread Atita Arora
Hi, Did you happen to look into : https://lucene.apache.org/solr/guide/6_6/the-dismax-query-parser.html#TheDisMaxQueryParser-Themm_MinimumShouldMatch_Parameter I believe 6.5.1 has it too. I hope it should help. On Wed, May 6, 2020 at 6:46 PM Russell Bahr wrote: > Hi SOLR team, > I have

Minimum Match Query

2020-05-06 Thread Russell Bahr
Hi SOLR team, I have been asked if there is a way to return results only if those results match a minimum number of times present in the query. ( queries looking for a minimum amount of mentions for a particular term/phrase. Ie must be mentioned 'x' amount of times to return results). Is this