We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
httpx 支持http2, pip3 install httpx pip3 install 'httpx[http2]' requests.Session() 替换成 httpx.Client(http2=True)
使用http2的多路复用减少握手.
The text was updated successfully, but these errors were encountered:
httpx.Client(http2=True) 会向下兼容 http1.0 http1.1 等吗?
httpx.Client(http2=True)
Sorry, something went wrong.
感谢你的建议,由于下面的几点分析,这个性能效果并不会很明显,由于目前项目追求稳定性,暂不会加入,但后续测试http2能够稳定运行后加入支持~
Keep-Alive
No branches or pull requests
httpx 支持http2,
pip3 install httpx
pip3 install 'httpx[http2]'
requests.Session() 替换成 httpx.Client(http2=True)
使用http2的多路复用减少握手.
The text was updated successfully, but these errors were encountered: