I have a document with the title "Here, there be dragons" and a body.
When I search for q = Here, there be dragons qf = title^2.0 body^0.8 qt = dismax Which is parsed as +DisjunctionMaxQuery((content:"here dragon"^0.8 | title:"here dragon"^2.0)~0.01) () I get the document as the first hit which is what I'd suspect. However, if change the query to q = "Here, there be dragons" (with quotes) which is parsed as +DisjunctionMaxQuery((content:"here dragon"^0.8 | title:"here dragon"^2.0)~0.01) () then I don't get the document at all. Which is not what I'd suspect. I've tried modifying the phrase slop but still don't get any results back. Am I doing something wrong - do I have to have an untokenized copy of fields lying around? Thanks, Simon