10 个版本
0.1.9 | 2024 年 7 月 25 日 |
---|---|
0.1.8 | 2024 年 7 月 6 日 |
0.1.7 | 2024 年 6 月 29 日 |
0.1.4 | 2024 年 5 月 30 日 |
0.1.0 | 2024 年 2 月 21 日 |
#175 在 HTTP 服务器 中
232 每月下载量
26KB
494 行
may_minihttp
基于 may 实现的迷你 HTTP 服务器
此 crate 是从 tokio_minihttp 端口迁移而来。但它使用起来更加简单,您可以直接在您的服务中调用 MAY
块 API。
用法
首先,将以下内容添加到您的 Cargo.toml
[dependencies]
may_minihttp = "0.1"
然后只需简单地实现您的 http 服务
extern crate may_minihttp;
use std::io;
use may_minihttp::{HttpServer, HttpService, Request, Response};
#[derive(Clone)]
struct HelloWorld;
impl HttpService for HelloWorld {
fn call(&mut self, _req: Request, res: &mut Response) -> io::Result<()> {
res.body("Hello, world!");
Ok(())
}
}
// Start the server in `main`.
fn main() {
let server = HttpServer(HelloWorld).start("0.0.0.0:8080").unwrap();
server.join().unwrap();
}
性能
在我的笔记本电脑上仅使用一个工作线程进行了测试
使用以下命令启动服务器。
$ cargo run --example=hello-world --release
tokio_minihttp
$ wrk http://127.0.0.1:8080 -d 10 -t 1 -c 200
Running 10s test @ http://127.0.0.1:8080
1 threads and 200 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 1.98ms 284.06us 12.53ms 98.92%
Req/Sec 101.64k 1.76k 103.69k 91.00%
1011679 requests in 10.05s, 99.38MB read
Requests/sec: 100650.94
Transfer/sec: 9.89MB
may_minihttp
$ wrk http://127.0.0.1:8080 -d 10 -t 1 -c 200
Running 10s test @ http://127.0.0.1:8080
1 threads and 200 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 1.70ms 812.42us 20.17ms 97.94%
Req/Sec 117.65k 7.52k 123.40k 88.00%
1171118 requests in 10.08s, 115.04MB read
Requests/sec: 116181.73
Transfer/sec: 11.41MB
基准测试
根据 TechEmpower 框架基准测试,这是可用的最快的 Web 框架之一。
许可证
本项目许可采用以下其中之一:
- Apache 许可证 2.0 版本,(LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 https://open-source.org.cn/licenses/MIT)
任选其一。
依赖项
~3–29MB
~430K SLoC