stop "uncompressing" registry data#4470
Merged
KristofferC merged 2 commits intomasterfrom Nov 4, 2025
Merged
Conversation
e190b0a to
3e23b37
Compare
Member
Author
|
Test seems to pass now and updated figures for are and specifically the I still need to take a proper pass through this because there is honestly quite a bit of AI slop in here, but I just wanted a finished implementation so I could look at the numbers and see it was what I thought it would be. |
290a468 to
3cfefbc
Compare
instead, do all operations on top of compressed data (`VersionRange` -> data) instead of uncompressed (`VersionNumber` -> data). This avoids having to materialize dictionaries with compat data for every version.
3cfefbc to
05c6e20
Compare
KristofferC
added a commit
that referenced
this pull request
Nov 7, 2025
(cherry picked from commit efe1eaf)
13 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
instead, do all operations on top of compressed data (
VersionRange-> data) instead of uncompressed (VersionNumber-> data).This avoids having to materialize dictionaries with compat data for every version.
As an example:
(where I am removing the size of storing the raw data of the registry itself).
and