Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcusgrass/http-cmp
Low-effort comparison of different http client implementations
https://github.com/marcusgrass/http-cmp
Last synced: 21 days ago
JSON representation
Low-effort comparison of different http client implementations
- Host: GitHub
- URL: https://github.com/marcusgrass/http-cmp
- Owner: MarcusGrass
- Created: 2024-02-09T21:48:12.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-09T22:46:24.000Z (12 months ago)
- Last Synced: 2024-11-08T05:12:40.742Z (2 months ago)
- Language: Rust
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Http-cmp
A low effort comparison of different http-clients, mostly comparing `axum` averhead, and uring efficiency
when fitted into `hyper`.## Current results
`axum` carries functionally no overhead over a pure `hyper` implementation.
My adaptation of `tokio-uring` into `hyper` has the same performance characteristics as
both of the above, when running single-threaded (the `tokio-uring` runtime is only single threaded as far
as I can tell). Seem to have slightly worse outliers, but I haven't measured percentiles yet.