You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Potential pruning optimization for phrase queries:
The score of a phrase query is defined by how often a phrase occurs in a document (term_freq is equal to phrase_count).
Once we have K (>=2) phrase_count in the Top N, we could fast skip if not all terms have at least K occurrences in the doc.
The text was updated successfully, but these errors were encountered:
Potential pruning optimization for phrase queries:
The score of a phrase query is defined by how often a phrase occurs in a document (
term_freq
is equal tophrase_count
).Once we have K (>=2) phrase_count in the Top N, we could fast skip if not all terms have at least K occurrences in the doc.
The text was updated successfully, but these errors were encountered: