Skip to content
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

Short-circuit single slice searches in ContextIndexSearcher #111126

Commits on Jul 20, 2024

  1. Short-circuit single slice searches in ContextIndexSearcher

    Even with the recent Lucene improvements in
    apache/lucene#13472 there is no need
    to go through all the Lucene machinery for a single slice here.
    The task executor allocates a bunch of objects and runs into some memory
    barriers that the JVM can't necessarily compile away.
    Lets save that overhead for the single slice case.
    Also this PR removes the pointless list of collectors that we were
    building.
    original-brownbear committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    e50e91e View commit details
    Browse the repository at this point in the history