Are terms searched with a PhraseQuery in Lucene, strictly matched in their order in the sentence ?
For example, if I have "A B C" and the doc contains "A C B", is PhraseQuery returning a hit ?
thanks
|
|
|
Yes, order matters. So in your example, the query "A B C" would NOT match a doc containing "A C B". |
|||
|
|
Not if you use slop in your PhraseQuery.
|
|||
|
|