Merged
Conversation
Changes from 3.2.5 to 3.5.0: ## 3.5.0 - Java 22+ optimizations with MemorySegment-based implementations for zero-copy I/O - Performance improvements for uncompressed files (up to 38% faster with 8 threads) - Support for values larger than 2GB on Java 22+ - VLQ optimization with inlined reads in uncompressed hash lookups - Type safety improvements with covariant return types ## 3.4.0 - Performance optimizations with readFullyCompare() method (11-17% improvement in high-concurrency workloads) - SIMD optimizations for byte array comparisons on Java 9+ - PooledSparkeyReader improvements with lock-free atomic operations - Fixed thread-safety bug in PooledSparkeyReader.getAsEntry() ## 3.3.0 - Default implementation change: Sparkey.open() now returns PooledSparkeyReader instead of ThreadLocalSparkeyReader - PooledSparkeyReader provides better memory safety for Java 21+ applications using virtual threads - ThreadLocalSparkeyReader is deprecated but available via Sparkey.openThreadLocalReader() Code changes: - Replaced explicit ThreadLocalSparkeyReader usage with Sparkey.open() - Updated imports from com.spotify.sparkey.extra.ThreadLocalSparkeyReader to com.spotify.sparkey.Sparkey 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5827 +/- ##
==========================================
- Coverage 61.49% 61.48% -0.01%
==========================================
Files 317 317
Lines 11650 11650
Branches 818 818
==========================================
- Hits 7164 7163 -1
- Misses 4486 4487 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
clairemcginty
approved these changes
Dec 15, 2025
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.
Summary
ThreadLocalSparkeyReaderwithSparkey.open()Changes from 3.2.5 to 3.5.0
3.5.0
3.4.0
3.3.0
Code changes
build.sbt:sparkeyVersionfrom3.2.5to3.5.0SparkeyUri.scala: replaced explicitThreadLocalSparkeyReaderusage withSparkey.open()com.spotify.sparkey.extra.ThreadLocalSparkeyReadertocom.spotify.sparkey.SparkeyTest plan
🤖 Generated with Claude Code