docs(client.tcp): requests are pipelined over a connection, not handled concurrently - #2
Merged
Merged
Conversation
…ed concurrently The README said multiple requests and responses are handled concurrently over a single connection. The client does keep many requests in flight, but the server processes a connection's requests one at a time in arrival order (per-connection inbound queue and send lock, server-wide cap), so a connection's throughput is bounded by handler time - about 1 000 light requests per second measured against a WitCloud gateway on the 3.x line - and independent connections scale in parallel. WitCloud roadmap review R4 / P0.0 (f). Co-Authored-By: Claude Fable 5.1 <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.
Why
WitCloud roadmap review (
@Docs/Roadmap/REVIEW-2026-09-03-roadmap-verification.md) verified the design documents against the code and found this README sentence contradicted by the implementation. The WitCloud plan tracks the correction as P0.0 (f).What
One bullet reworded so the README states what the code does. No code change.
🤖 Generated with Claude Code