You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf(frontend): kill O(n^2) scans in group-member sort + chat-open system events
Two more quadratics:
- group-member picker sort ran arrSelectedGroupMembers.indexOf AND arrChats.find
inside the comparator -> O(profiles * (members + chats) * log). Pre-index both
into Maps; comparator is O(1) per lookup.
- on chat open, system-event ingest deduped against loaded messages via
initialMessages.find and checked known profiles via arrProfiles.some, both per
event -> O(systemEvents * messages) + O(systemEvents * profiles). Hoist both to
Sets, O(1) per check.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
0 commit comments