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

zstd: Add RLE detection+encoding #938

Merged
merged 2 commits into from
Mar 8, 2024
Merged

zstd: Add RLE detection+encoding #938

merged 2 commits into from
Mar 8, 2024

Commits on Mar 8, 2024

  1. zstd: Add RLE detection+encoding

    Add full block RLE encoding.
    
    Fastest+Default: The first block in RLE will be detected automatically, but following will likely be backreferences.
    
    Better+Best: Explicit RLE block detection. Will always be encoded as RLE blocks.
    
    Full block RLE are very uncommon and the gains are small, but can happen in very sparse data, so makes sense for "stronger" settings.
    
    Add feature #937
    klauspost committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    0b60023 View commit details
    Browse the repository at this point in the history
  2. Fix output name in test

    klauspost committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    faba504 View commit details
    Browse the repository at this point in the history