Re: solr BooleanClauses issue with space

2016-01-13 Thread Doug Turnbull
Paste your Solr query into here http://splainer.io and it will help you debug your scoring/matching (shameless plug I made this thing) Also I suspect you may be using edismax. In which case the inclusion/exclusion of explicit ORs might turn a query from a big OR query into possibly a dismax query

Re: solr BooleanClauses issue with space

2016-01-13 Thread Emir Arnautovic
Hi Sara, You can run your query (or smaller one) with debugQuery=true and see how it is rewritten. Thanks, Emir On 13.01.2016 16:01, sara hajili wrote: tnx. and my main question is about maxBooleanDefault in solr config. it is 1024 by default. and i have a edismax query with about 500 words i

Re: solr BooleanClauses issue with space

2016-01-13 Thread sara hajili
tnx. and my main question is about maxBooleanDefault in solr config. it is 1024 by default. and i have a edismax query with about 500 words in this way: q1= str1 OR str2 OR str3 ...OR strn it throws exception that cant't parse query too boolean clause. so if i changed maxBooleanDefault to 1500 it w

Re: solr BooleanClauses issue with space

2016-01-13 Thread Shawn Heisey
On 1/13/2016 5:40 AM, sara hajili wrote: > what is exactly diffrence between sapce and OR in solr query ? > i mean what is diffrence between > q = solr OR lucene OR search > and this > q = solr lucene search? > > solr default boolean occurence is OR,isn't it? This depends on what the default ope