Re: Dismax and StandardTokenizer: OR queries despite mm=100%

2015-09-24 Thread Ahmet Arslan
Hi Andreas, You are correct, no re-indexing required for autoGeneratePhraseQueries. Ahmet On Thursday, September 24, 2015 3:52 PM, Andreas Hubold wrote: Thank you, autoGeneratePhraseQueries did the job. I assume that this setting just affects query generation and I don't need to reindex af

Re: Dismax and StandardTokenizer: OR queries despite mm=100%

2015-09-24 Thread Andreas Hubold
Thank you, autoGeneratePhraseQueries did the job. I assume that this setting just affects query generation and I don't need to reindex after changing the field type accordingly. Is this correct? BTW, I just found SOLR-3589 where the same issue was reported and fixed for the edismax parser. It

Re: Dismax and StandardTokenizer: OR queries despite mm=100%

2015-09-23 Thread billnbell
Use fq Bill Bell Sent from mobile > On Sep 23, 2015, at 1:00 PM, Andreas Hubold > wrote: > > Hi, > > we're using Solr 4.10.4 and the dismax query parser to search across multiple > fields. One of the fields is configured with a StandardTokenizer (type > "text_general"). I set mm=100% to o

Re: Dismax and StandardTokenizer: OR queries despite mm=100%

2015-09-23 Thread Ahmet Arslan
Hi Andreas, Thats weird. It looks like mm calculation is done before the tokenization took place. You can try to set autoGeneratePhraseQueries to true or replace dashes with white-spaces at client side. Ahmet On Wednesday, September 23, 2015 10:00 PM, Andreas Hubold wrote: Hi, we're usin