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

LUCENE-9536: Optimize OrdinalMap when one segment contains all distinct values. #1948

Merged
merged 4 commits into from
Nov 2, 2020

Commits on Oct 5, 2020

  1. LUCENE-9536: Optimize OrdinalMap when one segment contains all distin…

    …ct values.
    
    For doc values that are not too high cardinality, it is common for some large
    segments to contain all distinct values. In this case, we can check if the first
    segment ords map perfectly to global ords, and if so store the global ord deltas
    and first segment indices as `LongValues.ZEROES`
    to save some space.
    jtibshirani committed Oct 5, 2020
    Configuration menu
    Copy the full SHA
    4f22cba View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2020

  1. Configuration menu
    Copy the full SHA
    55ac801 View commit details
    Browse the repository at this point in the history
  2. Clarify comment.

    jtibshirani committed Oct 15, 2020
    Configuration menu
    Copy the full SHA
    e9d7b94 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a0330e3 View commit details
    Browse the repository at this point in the history