Help with Query String Query

I agree with Radu here. The operator precedence in the QueryParsers is
very messy and best handled through brackets.

On Wednesday, November 7, 2012 7:39:26 PM UTC+11, Radu Gheorghe wrote:

Hello,

From what I understand by reading these two:
Re: help with boolean expression
[LUCENE-1823] QueryParser with new features for Lucene 3 - ASF JIRA

This seems to be an issue with the way Lucene parses queries, which is
not resolved yet. So I think the best approach here is to use explicit
grouping through those parenthesis.

Best regards,
Radu

http://sematext.com/ -- Elasticsearch -- Solr -- Lucene

On Wed, Nov 7, 2012 at 1:44 AM, gchen <kevi...@gmail.com <javascript:>>
wrote:

Thanks Raffaele, grouping works. I agree with you, from what I've learn,
AND
has higher precedence, so that means the query should also work without
grouping right? Unless i'm missing something fundamental?

On Tuesday, November 6, 2012 5:06:36 PM UTC-5, Raffaele Sena wrote:

I am not sure AND has a higher priority than OR in Lucene. I would try
"grouping":

"some AND (random OR other)"

see

Apache Lucene - Query Parser Syntax

operators

-- Raffaele

On Tue, Nov 6, 2012 at 1:59 PM, gchen kevi...@gmail.com wrote:

Hi,

I'm trying to do text search with boolean using QueryString query but
it's not hehaving as expected.

Let's say i have a field call headline in my database and i have the
following two headlines...

headline 1: "some random headline"
headline 2: "some other headline"

{"query_string":{
"default_field":"headline",
"query":"some AND random OR other"}
}

The above query should return both docs right? If not, what is wrong
with my query?

If i can change the query to "some OR random OR other", then it does
return both docs, but why didn't the AND work?

Thanks in advance for the help.

--

--

--