15 releases (4 breaking)

0.5.2 Feb 17, 2022
0.5.1 Dec 26, 2021
0.4.0 Dec 26, 2021
0.3.2 Sep 23, 2021
0.1.4 Jan 20, 2021

#721 in Network programming

Download history 312/week @ 2023-11-26 251/week @ 2023-12-03 323/week @ 2023-12-10 593/week @ 2023-12-17 368/week @ 2023-12-24 345/week @ 2023-12-31 522/week @ 2024-01-07 638/week @ 2024-01-14 498/week @ 2024-01-21 493/week @ 2024-01-28 499/week @ 2024-02-04 536/week @ 2024-02-11 452/week @ 2024-02-18 473/week @ 2024-02-25 457/week @ 2024-03-03 276/week @ 2024-03-10

1,721 downloads per month
Used in 3 crates (via rosu-v2)

MIT/Apache

31KB
485 lines

leaky-bucket-lite

docs badge crates badge actions badge

A token-based rate limiter based on the leaky bucket algorithm, mainly a lazy reimplementation of udoprog's leaky-bucket with less dependencies and overhead.

If the tokens are already available, the acquisition will be instant through a fast path, and the acquired number of tokens will be added to the bucket.

If they aren't, the task that tried to acquire the tokens will be suspended until the required number of tokens has been added.

Usage

Add the following to your Cargo.toml:

leaky-bucket-lite = "0.4"

Features

leaky-bucket-lite provides 3 implementations:

For potential performance increase with sync-threadsafe or tokio using parking_lot's locking objects, enable the parking_lot feature.

Example

use leaky_bucket_lite::LeakyBucket;
use std::time::Duration;

#[tokio::main]
async fn main() {
    let rate_limiter = LeakyBucket::builder()
        .max(5)
        .tokens(0)
        .refill_interval(Duration::from_secs(1))
        .refill_amount(1)
        .build();

    println!("Waiting for permit...");
    // should take about 5 seconds to acquire.
    rate_limiter.acquire(5).await;
    println!("I made it!");
}

Dependencies

~2–9MB
~48K SLoC