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 日

#175HTTP 服务器

Download history • Rust 包仓库 34/week @ 2024-04-29 • Rust 包仓库 129/week @ 2024-05-06 • Rust 包仓库 33/week @ 2024-05-13 • Rust 包仓库 45/week @ 2024-05-20 • Rust 包仓库 177/week @ 2024-05-27 • Rust 包仓库 23/week @ 2024-06-03 • Rust 包仓库 15/week @ 2024-06-10 • Rust 包仓库 174/week @ 2024-06-17 • Rust 包仓库 256/week @ 2024-06-24 • Rust 包仓库 147/week @ 2024-07-01 • Rust 包仓库 46/week @ 2024-07-08 • Rust 包仓库 1/week @ 2024-07-15 • Rust 包仓库 143/week @ 2024-07-22 • Rust 包仓库 70/week @ 2024-07-29 • Rust 包仓库 13/week @ 2024-08-05 • Rust 包仓库 6/week @ 2024-08-12 • Rust 包仓库

232 每月下载量

MIT/Apache

26KB
494

may_minihttp

基于 may 实现的迷你 HTTP 服务器

此 crate 是从 tokio_minihttp 端口迁移而来。但它使用起来更加简单,您可以直接在您的服务中调用 MAY 块 API。

Build Status Crate

用法

首先,将以下内容添加到您的 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 框架之一。

许可证

本项目许可采用以下其中之一:

任选其一。

依赖项

~3–29MB
~430K SLoC