Re: very simple boolean query not working

2013-08-13 Thread Erick Erickson
Not quite sure what you're seeing here. adding &debugQuery=true shows the parsed query, timings, things like that. What it does NOT do is show you how things were scored. If you have a document that you think should match, you can add explainOther to the query and it'll show you how an arbitrary d

Re: very simple boolean query not working

2013-08-12 Thread S L
Jack Krupansky-2 wrote > Also, be aware that the spaces in your query need to be URL-encoded. > Depending on how you are sending the command, you may have to do that > encoding yourself. > > -- Jack Krupansky It's a good possibility that that's the problem. I've been doing queries in different

Re: very simple boolean query not working

2013-08-12 Thread Jack Krupansky
: Re: very simple boolean query not working Erick Erickson wrote What do you get when you add &debugQuery=true? That should show you the results of the query parsing, which often adds clues. FWIW, Erick When I was trying to debug this last night I noticed that when I added "&debugQ

Re: very simple boolean query not working

2013-08-12 Thread S L
Erick Erickson wrote > What do you get when you add &debugQuery=true? That should show you the > results of the query parsing, which often adds clues. > > FWIW, > Erick When I was trying to debug this last night I noticed that when I added "&debugQuery=true" to queries I would only get debug outp

Re: very simple boolean query not working

2013-08-12 Thread Erick Erickson
What do you get when you add &debugQuery=true? That should show you the results of the query parsing, which often adds clues. FWIW, Erick On Mon, Aug 12, 2013 at 1:35 AM, S L wrote: > Jack Krupansky-2 wrote > > What query parser and release of Solr are you using? > > > > There was a bug at one

Re: very simple boolean query not working

2013-08-11 Thread S L
Jack Krupansky-2 wrote > What query parser and release of Solr are you using? > > There was a bug at one point where a fielded term immediately after a left > parenthesis was not handled properly. > > If I recall, just insert a space after the left parenthesis. > > Also, the dismax query parser

Re: very simple boolean query not working

2013-08-11 Thread Jack Krupansky
What query parser and release of Solr are you using? There was a bug at one point where a fielded term immediately after a left parenthesis was not handled properly. If I recall, just insert a space after the left parenthesis. Also, the dismax query parser does not support parentheses. -- Ja