Hi Jack,
Thanks for your response, but if I try q="best quality and best
price", the parsedquery comes as following which is a lot of unwanted
combinations. I am just looking for uni-bi and tri grams.
"debug":{
"rawquerystring":"\"best quality and best price\"",
"querystring":"\"
The query parser only presents the query terms one at a time to the
analyzer, so your analyzer doesn't see both terms on one analysis call.
If you enclose your query terms in quotes as a single phrase, you should see
multiple terms being processed.
q="best price"
-- Jack Krupansky
-Or