rust-web-frameworks-benchmark
rust-web-frameworks-benchmark copied to clipboard
A hello world benchmark for the available Rust Web Frameworks: hyper vs gotham vs actix-web vs warp vs rocket
Hello, first of all thank you for this benchmark comparison. I have a question regardless to the performance I got on my machine: - I ran the Actix server in...
I don't have access to the same machine spec as the original tests were conducted. So I haven't updated the README
Noticed that warp was the only server with Non 2xx and 3xx responses. And not just 1 but all of them. This might have impacted benchmarking
show result sort by latency in Conclusion section
There are some obvious problem with the bench. 1. actix-web and warp return a String while others return a &'static str. This means they have additional allocation for generating payload...
By default, trillium will bind to localhost:8080, but will pick up HOST and PORT env vars if needed
It would be good to add benchmark for tide here as well, I would like to see how well it compares with rocket. https://github.com/http-rs/tide
I try to run the benchmark against the master branch of https://github.com/SergioBenitez/Rocket (v5). To see if there is any speed improvement. Because it's already async. I run the benchmark to...