{!complexphrase inOrder=false}f: ( "cat jump"~2 ) this query will give
more result as it also consider "jump cat"~2 because inOrder=false,
inOrder=true may give you same result as f: ( "cat jump"~2)
or try f: ( "cat jump"~2 OR "jump cat"~2) to get same results as
{!complexphrase inOrder=false
Anyone have any insight here?
On 10/8/18, 3:34 PM, "David Santamauro" wrote:
Hi, quick question. Should
1) {!complexphrase inOrder=false}f: ( "cat jump"~2 )
... and
2) f: ( "cat jump"~2 )
... yield the same results? I'm trying to diagnose a more compl
Hi, quick question. Should
1) {!complexphrase inOrder=false}f: ( "cat jump"~2 )
... and
2) f: ( "cat jump"~2 )
... yield the same results? I'm trying to diagnose a more complicated
discrepancy that I've boiled down to this simple case. I understand #1 creates
a SpanQuery and #2 a PhraseQu