fix(threads): avoid quadratic overlap check during resume hydration#586
Open
mhulden wants to merge 1 commit intoDimillian:mainfrom
Open
fix(threads): avoid quadratic overlap check during resume hydration#586mhulden wants to merge 1 commit intoDimillian:mainfrom
mhulden wants to merge 1 commit intoDimillian:mainfrom
Conversation
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
Long thread resume could become very slow because overlap detection in resume hydration used nested scans:
items.some(...)+localItems.some(...)(quadratic in combined list size)This change replaces that with a
Setof local item IDs and O(1) membership checks.What changed
buildResumeHydrationPlan(src/features/threads/utils/threadActionHelpers.ts):localItemIds = new Set(localItems.map(item => item.id))items.some(item => localItemIds.has(item.id))Why
For long threads, this removes a hot O(n²) path during resume while keeping behavior identical.
Validation
npm run -s typechecknpm run -s test -- src/features/threads/hooks/useThreadActions.test.tsx src/features/threads/hooks/useThreads.integration.test.tsx src/features/app/hooks/useRemoteThreadRefreshOnFocus.test.tsx src/utils/threadItems.test.tsaarch64AppImage locally.