chore: update fossilize to 0.6.0 (V8 code cache support)#1012
Merged
Conversation
Contributor
Codecov Results 📊✅ Patch coverage is 100.00%. Project has 4235 uncovered lines. Coverage diff@@ Coverage Diff @@
## main #PR +/-##
==========================================
+ Coverage 81.87% 81.87% —%
==========================================
Files 328 328 —
Lines 23359 23359 —
Branches 15114 15114 —
==========================================
+ Hits 19124 19124 —
- Misses 4235 4235 —
- Partials 1621 1621 —Generated by Codecov Action |
b75d54e to
2517945
Compare
Fossilize 0.6.0 automatically enables V8 code cache for binaries that match the build host platform. The linux-x64 binary (built on ubuntu-latest) gets ~15% faster startup from pre-compiled bytecode.
2517945 to
a80a6b1
Compare
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.
Updates fossilize to v0.6.0 which automatically enables V8 code cache for binaries matching the build host platform.
Impact: The linux-x64 binary (built on ubuntu-latest in CI) gets ~15% faster startup (~740ms vs ~870ms) from pre-compiled V8 bytecode. Cross-compiled binaries (darwin, windows, linux-arm64) are unaffected — code cache is CPU-architecture-specific.
See BYK/fossilize#8 for the fossilize change.