#速率限制 #控制器 #Actix

website-screenshot-actix-governor

由governor crate支持的actix-web速率限制中间件

1 个不稳定版本

0.3.0 2022年5月25日

#1270HTTP服务器

GPL-3.0-or-later

32KB
488

CI Docs crates.io

Actix Governor

一个为actix-web提供的中间件,由governor支持速率限制。

功能

  • 易于使用
  • 高性能
  • 强大而灵活的API

示例

use actix_governor::{Governor, GovernorConfigBuilder};
use actix_web::{web, App, HttpServer, Responder};

async fn index() -> impl Responder {
    "Hello world!"
}

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    // Allow bursts with up to five requests per IP address
    // and replenishes one element every two seconds
    let governor_conf = GovernorConfigBuilder::default()
        .per_second(2)
        .burst_size(5)
        .finish()
        .unwrap();

    HttpServer::new(move || {
        App::new()
            // Enable Governor middleware
            .wrap(Governor::new(&governor_conf))
            // Route hello world service
            .route("/", web::get().to(index))
    })
    .bind("127.0.0.1:8080")?
    .run()
    .await
}

将以下内容添加到您的 Cargo.toml

[dependencies]
actix-governor = "0.3"

依赖关系

~16–28MB
~497K SLoC