Fastify did 6K RPS (Request per Second)
Netty did 23K RPS (Request Per Second)
Actix did 53K RPS (Request Per Second)
Actix 1ms latency
Netty 4ms latency
Fastify 14ms latency
npm install -g autocannon
Actix
git clone https://github.com/diegopacheco/rust-playground.git
cd rust-microservice/
cargo build --release
./target/release/news-service
autocannon -c 100 -d 40 -p 10 172.17.0.2:8080/
Netty
docker run diegopacheco/time-microservice
autocannon -c 100 -d 40 -p 10 172.17.0.2:8080/rest/datetime
Fastify
git clone https://github.com/diegopacheco/Diego-Pacheco-Sandbox.git
cd scripts/node.js/fastify-fun2/
npm install
npm start
autocannon -c 100 -d 40 -p 10 localhost:3000
Fastify can certainly do better. 56254 req/sec with their benchmarks : https://www.fastify.io/benchmarks/