https://github.com/alshdavid/rust-http-benchmarks
https://github.com/alshdavid/rust-http-benchmarks
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alshdavid/rust-http-benchmarks
- Owner: alshdavid
- Created: 2024-07-25T22:31:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-26T07:51:45.000Z (almost 2 years ago)
- Last Synced: 2025-03-23T05:27:10.239Z (over 1 year ago)
- Language: HTML
- Size: 1.58 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minimal HTTP server benchmarks
Benchmarks of HTTP servers, the motivation is to figure out why HTTP servers in Rust perform strangely under certain conditions when compared to other languages.
## Instructions
Requirements:
- [Just](https://github.com/casey/just)
- Nodejs
- Go
- Rust
To run the complete benchmark suite and emit an output
```
just benchmark
```
To run an individual server
```
just run rust_std
# Or rebuild on change
just watch rust_std
just watch rust_std --release
```