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
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
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
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
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
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
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