Optimize batch reconstruction protocol for improved concurrency#66
Draft
Optimize batch reconstruction protocol for improved concurrency#66
Conversation
- Replace nested Arc<Mutex<HashMap>> with Arc<DashMap> for single-lock session access - Add HashSet for O(1) deduplication instead of O(n) linear search - Add AtomicBool guards to prevent race conditions during interpolation - Move expensive interpolation operations outside lock scope - Convert clear_entire_store, clear_store, and get_or_create_store to sync methods Performance improvements: - Session lookup: 2 locks → 1 lock - Deduplication: O(n) → O(1) - Interpolation: blocking → non-blocking Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
Arc<Mutex<HashMap>>withArc<DashMap>for single-lock session accessHashSetfor O(1) deduplication instead of O(n) linear searchAtomicBoolguards to prevent race conditions during interpolationclear_entire_store,clear_store, andget_or_create_storeto sync methodsPerformance Improvements
Race Condition Prevention
AtomicBool::compare_exchangeensures exactly one caller winsTest plan
RUST_TEST_THREADS=8)🤖 Generated with Claude Code