Reputation: 1
I have a case where i need to find the results of a query that search for a exact phrase + other words, for example, if i have a keyword like:
"how about" tomorrow morning
the results that should be fetched should match these criteria:
Can anybody explain to me how to do this? I tried:
q=exactText:"how+about" AND content:tomorrow+morning
q=exactText:"how+about" AND _query_:"{!dismax qf=content pf=content v=$qq}"&qq=tomorrow+morning
but the results that i got:
The correct result should only be number 3. Please, help.
Thanks.
Upvotes: 0
Views: 436
Reputation: 26713
Try querying:
exactText:"how+about" AND content:tomorrow AND content:morning
Upvotes: 1