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
Tick patch replay currently needs to locate an existing edge by EdgeId when applying an UpsertEdge. Today this is implemented as an O(total_edges) scan across all outbound buckets.
Implement a reverse index in GraphStore (e.g., EdgeId -> from NodeId) so patch replay can migrate edges in O(bucket_edges) instead of O(total_edges).
Acceptance:
No behavioral change for state_root / commit_id semantics.
Clippy/tests/rustdoc gates remain green.
Tick patch apply no longer performs a full scan for UpsertEdge.