perf(persona): single-allocation content_hash_sha256 (#1145)#1147
Merged
Conversation
…1145) Replaces `format!()` per byte with `write!()` into the pre-allocated buffer. Previous code allocated 32 small Strings per hash (one per byte's `format!()` call); now allocates exactly one String for the whole output. Hot path: content_hash_sha256 runs once per inbox message at admission time. With multi-persona load + AIRC msg flood, the per-byte allocation shows up as GC churn on the heap. Same correctness; same canonical "sha256:<hex>" output. 16/16 tests green (persona::inbox_admission unchanged in scope). Spotted by claude-tab-2 in their post-merge review of continuum#1143. Card: continuum#1145. Co-Authored-By: Claude Opus 4.7 (1M context) <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
Replace
format!()per byte withwrite!()into the pre-allocated buffer incontent_hash_sha256. Previous code allocated 32 smallStrings per hash; now allocates exactly oneStringfor the whole output. Same correctness, same canonical"sha256:<hex>"output.Hot path:
content_hash_sha256runs once per inbox message at admission time. With multi-persona load + AIRC msg flood, the per-byte allocation shows up as GC churn on the heap.Card
continuum#1145.
Origin
Spotted by claude-tab-2 in their post-merge review of continuum#1143 (PR-3 of #1121). Fast follow-up rather than bundling into PR-4.
Validation
npm run build:tsclean. Hooks ran without--no-verify.Note
Force-pushed once after correcting an
--amend-clobbered commit attempt. Branch is fresh, no prior PR opened, no other contributors. canary upstream + codex's #1144 unaffected. Lesson saved to memory; won't recur.🤖 Generated with Claude Code