Re: Lower case "or" is being treated as operator OR?

2019-08-08 Thread Steven White
Hi Chris, I was able to fix the issue by adding the line "false " to my request handler. Here is how my request handler looks like explicit edismax *:* 100 true CC_UNIQUE_FIELD,CC_FILE_PATH,score CC_ALL_FIELDS_DATA xml false

Re: Lower case "or" is being treated as operator OR?

2019-08-07 Thread Chris Hostetter
: I think by "what query parser" you mean this: no, that's the fieldType -- what i was refering to is that you are in fact using "edismax", but with solr 8.1 lowercaseOperators should default to "false", so my initial guess is probably wrong. : By "request parameter" I think you are asking

Re: Lower case "or" is being treated as operator OR?

2019-08-07 Thread Steven White
at > the time said)... > > > https://lucene.apache.org/solr/guide/8_1/the-extended-dismax-query-parser.html > https://issues.apache.org/jira/browse/SOLR-4646 > > > : Date: Wed, 7 Aug 2019 19:32:02 -0400 > : From: Steven White > : Reply-To: solr-use

Re: Lower case "or" is being treated as operator OR?

2019-08-07 Thread Chris Hostetter
r@lucene.apache.org : To: solr-user@lucene.apache.org : Subject: Lower case "or" is being treated as operator OR? : : Hi everyone, : : My schema is setup to index all words (no stop-words such as "or", "and", : etc.) are removed. My default operator is AN

Lower case "or" is being treated as operator OR?

2019-08-07 Thread Steven White
Hi everyone, My schema is setup to index all words (no stop-words such as "or", "and", etc.) are removed. My default operator is AND. But when I search for "one or two" (without the quotes as this is not a phrase search) I'm getting hits on documents that have either "one" or "two". It has the