10个版本
0.5.1 | 2023年9月16日 |
---|---|
0.5.0 | 2023年9月16日 |
0.4.0 | 2022年9月10日 |
0.3.0 | 2022年7月11日 |
0.1.2 | 2020年4月11日 |
626 在 Web编程
每月618 次下载
53KB
897 行
actix-limitation
使用固定窗口计数器对任意键进行速率限制,由Redis支持Actix Web。
最初基于https://github.com/fnichol/limitation。
示例
[dependencies]
actix-web = "4"
actix-limitation = "0.5"
use actix_limitation::{Limiter, RateLimiter};
use actix_session::SessionExt as _;
use actix_web::{dev::ServiceRequest, get, web, App, HttpServer, Responder};
use std::{sync::Arc, time::Duration};
#[get("/{id}/{name}")]
async fn index(info: web::Path<(u32, String)>) -> impl Responder {
format!("Hello {}! id:{}", info.1, info.0)
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
let limiter = web::Data::new(
Limiter::builder("redis://127.0.0.1")
.key_by(|req: &ServiceRequest| {
req.get_session()
.get(&"session-id")
.unwrap_or_else(|_| req.cookie(&"rate-api-id").map(|c| c.to_string()))
})
.limit(5000)
.period(Duration::from_secs(3600)) // 60 minutes
.build()
.unwrap(),
);
HttpServer::new(move || {
App::new()
.wrap(RateLimiter::default())
.app_data(limiter.clone())
.service(index)
})
.bind(("127.0.0.1", 8080))?
.run()
.await
}
依赖项
~17–28MB
~497K SLoC