Skip to content

Only score doc first when minCompetitiveScore is zero #14856

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ private float computeMaxScore(int windowMin, int windowMax) throws IOException {
public int score(LeafCollector collector, Bits acceptDocs, int min, int max) throws IOException {
collector.setScorer(scorable);

int windowMin = scoreDocFirstUntilDynamicPruning(collector, acceptDocs, min, max);
int windowMin = Math.max(lead.docID(), min);
if (scorable.minCompetitiveScore == 0) {
windowMin = scoreDocFirstUntilDynamicPruning(collector, acceptDocs, min, max);
}

while (windowMin < max) {
// Use impacts of the least costly scorer to compute windows
Expand Down
Loading