Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 1 down vote accepted

Yes, order matters. So in your example, the query "A B C" would NOT match a doc containing "A C B".

share|improve this answer
Ok, so do you suggest me to parse the strings and concatenate TermQueries with field and term ? – Patrick Feb 28 '11 at 15:13

Not if you use slop in your PhraseQuery.

Sets the number of other words permitted between words in query phrase. If zero, then this is an exact phrase search. For larger values this works like a WITHIN or NEAR operator.

The slop is in fact an edit-distance, where the units correspond to moves of terms in the query phrase out of position. For example, to switch the order of two words requires two moves (the first move places the words atop one another), so to permit re-orderings of phrases, the slop must be at least two.

More exact matches are scored higher than sloppier matches, thus search results are sorted by exactness.

The slop is zero by default, requiring exact matches.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.