docs: document connection pooling behavior#2851
Merged
seanmonstar merged 3 commits intoseanmonstar:masterfrom Nov 4, 2025
Merged
docs: document connection pooling behavior#2851seanmonstar merged 3 commits intoseanmonstar:masterfrom
seanmonstar merged 3 commits intoseanmonstar:masterfrom
Conversation
Add connection pooling section to Client struct docs and update pool_idle_timeout and pool_max_idle_per_host methods.
seanmonstar
requested changes
Nov 3, 2025
Owner
seanmonstar
left a comment
There was a problem hiding this comment.
Thanks for taking the time to improve the docs!
I reminded myself what that issue said, and yea, I'd be happy with adding a sub section to the struct docs. I suspect that is sufficient...
src/async_impl/client.rs
Outdated
| /// # Connection Pooling | ||
| /// | ||
| /// The Client maintains a pool of reusable HTTP connections to avoid | ||
| /// connection setup overhead. |
Owner
There was a problem hiding this comment.
There's a sentence a few lines up saying similar. What if we took the essence of that line ("holds a connection pool internally"), and merged it with this one?
Contributor
Author
There was a problem hiding this comment.
Good point! Merged them to avoid redundancy.
Contributor
Author
|
Thanks for the feedback! I've addressed all your comments. |
kodiakhq bot
pushed a commit
to pdylanross/fatigue
that referenced
this pull request
Dec 9, 2025
Bumps reqwest from 0.12.24 to 0.12.25. Release notes Sourced from reqwest's releases. v0.12.25 Highlights Add Error::is_upgrade() to determine if the error was from an HTTP upgrade. Fix sending Proxy-Authorization if only username is configured. Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP. Refactor internal decompression handling to use tower-http. What's Changed tests: fix wasm timeout test with uncached response by @seanmonstar in seanmonstar/reqwest#2853 docs: document connection pooling behavior by @vinzmyko in seanmonstar/reqwest#2851 docs: document WASM client by @vinzmyko in seanmonstar/reqwest#2859 chore: minor improvement for docs by @black5box in seanmonstar/reqwest#2862 fix: send proxy-authorization even with empty password by @barjin in seanmonstar/reqwest#2868 feat(error): add is_upgrade method to detect protocol upgrade errors by @0x676e67 in seanmonstar/reqwest#2822 Use decompression from tower-http by @ducaale in seanmonstar/reqwest#2840 fix(proxy): forward Proxy-Authorization header to HTTPS proxies for HTTP targets by @0x676e67 in seanmonstar/reqwest#2872 v0.12.25 by @seanmonstar in seanmonstar/reqwest#2880 New Contributors @vinzmyko made their first contribution in seanmonstar/reqwest#2851 @black5box made their first contribution in seanmonstar/reqwest#2862 @barjin made their first contribution in seanmonstar/reqwest#2868 Full Changelog: seanmonstar/reqwest@v0.12.24...v0.12.25 Changelog Sourced from reqwest's changelog. v0.12.25 Add Error::is_upgrade() to determine if the error was from an HTTP upgrade. Fix sending Proxy-Authorization if only username is configured. Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP. Refactor internal decompression handling to use tower-http. Commits f156a9f v0.12.25 fc1ff4f fix(proxy): forward Proxy-Authorization header to HTTPS proxies for HTTP targ... b7c3712 Use decompression from tower-http (#2840) 74e6f84 feat(error): add is_upgrade method to detect protocol upgrade errors (#2822) c0c06b7 fix: send proxy-authorization even with empty password (#2868) a2aa5a3 chore: minor improvement for docs (#2862) 9c4999d docs: document WASM client (#2859) a97e195 docs: document connection pooling behavior (#2851) e3093ed tests: fix wasm timeout test with uncached response (#2853) See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
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.
Addresses #2500
Added documentation to clarify the current behavior and limitations.
Changes:
Happy to adjust based on feedback!