Hi Solr Users,
Could you please help me with an example query syntax that uses more than
one query parser in the same query?
I tried the following, edismax to search against the description field and
lucene parser to search against the keywords field, but it does not work.
What is wrong?
host:port/solr/v9/select?q={!edismax qf=description}white roses OR
{!lucene}keywords:(white AND roses)&debug=true
The solr parsed string is following -
"parsedquery_toString": "+((description:white roses) (description:OR)
(description:{!lucene}keywords:(white) (description:AND)
(description:roses)))",
Thank you,
Rajani