async-rate-limit

Crates.ioasync-rate-limit
lib.rsasync-rate-limit
version0.1.1
sourcesrc
created_at2023-10-04 11:21:35.161331
updated_at2024-11-03 23:12:36.213932
descriptionCommon traits for rate limiting and implementations in async contexts.
homepage
repositoryhttps://github.com/Brendan-Blanchard/async-rate-limit
max_upload_size
id992155
size32,189
Brendan Blanchard (Brendan-Blanchard)

documentation

README

async-rate-limit

A basic Tokio rate-limiting library providing two traits and common implementations.

badge License: MIT

Usage:

use tokio::time::{Instant, Duration};
use async_rate_limit::limiters::VariableCostRateLimiter;
use async_rate_limit::sliding_window::SlidingWindowRateLimiter;

#[tokio::main]
async fn main() -> () {
    let mut limiter = SlidingWindowRateLimiter::new(Duration::from_secs(1), 5);
    
    for _ in 0..3 {
        // these will proceed immediately, spending 3 units
        get_lite(&mut limiter).await;
    }
    // 3/5 units are spent, so this will wait for ~1s to proceed since it costs another 3
    get_heavy(&mut limiter).await;
}

// note the use of the `VariableCostRateLimiter` trait, rather than the direct type
async fn get_lite<T>(limiter: &mut T) where T: VariableCostRateLimiter {
    limiter.wait_with_cost(1).await;
    println!("Lite: {:?}", Instant::now());
}

async fn get_heavy<T>(limiter: &mut T) where T: VariableCostRateLimiter {
    limiter.wait_with_cost(3).await;
    println!("Heavy: {:?}", Instant::now());
}
Commit count: 22

cargo fmt