#rate-limiting #bucket #token #algorithm #api #acquire

bin+lib tokenbucket

Provies a token-bucket algorithm with a simple API

7 releases

0.1.6 Nov 3, 2024
0.1.5 May 20, 2024
0.1.4 Apr 9, 2024
0.1.3 Aug 21, 2020

#4 in #bucket

Download history 4053/week @ 2024-08-12 4409/week @ 2024-08-19 3179/week @ 2024-08-26 3263/week @ 2024-09-02 4486/week @ 2024-09-09 4119/week @ 2024-09-16 4297/week @ 2024-09-23 4330/week @ 2024-09-30 4822/week @ 2024-10-07 4567/week @ 2024-10-14 3669/week @ 2024-10-21 3123/week @ 2024-10-28 2857/week @ 2024-11-04 3319/week @ 2024-11-11 3695/week @ 2024-11-18 1466/week @ 2024-11-25

11,440 downloads per month

MIT license

13KB
101 lines

tokenbucket

Documentation GitHub license Downloads

This library provides a TokenBucket Algorithm implementation for the Rust programming language.

Install

Add the following to your Cargo.toml

[dependencies]
tokenbucket = "0.1.6"

Usage

use tokenbucket::{TokenBucket, TokenAcquisitionResult};

fn main() {
    let mut bucket = TokenBucket::new(5.0, 100.0);
    match bucket.acquire(1.0) {
        Ok(rate)  => println!("rate/allow: {}, true", rate),
        Err(rate) => println!("rate/allow: {}, false", rate),
    }
}

See the documentation for more advanced usage examples.


lib.rs:

This crate provides a simple TokenBucket object for use in rate- limiting.

Short Example Program

use tokenbucket::TokenBucket;
use tokenbucket::TokenAcquisitionResult;
use std::{thread, time};

// Will acquire tokens at the specified rate for the specified duration.
// After each acquisition, the AcquisitionResult will be printed.
fn run(bucket: &mut TokenBucket, rate: u32, duration: u32) {
    for _ in 0..=(rate * duration) {
        // Acquire 1 token from the bucket.
        let acquisition: TokenAcquisitionResult = bucket.acquire(1.0);

        // Determine the acquisition result.
        match acquisition {
            Ok(rate)  => println!("rate/allow: {}, true", rate),
            Err(rate) => println!("rate/allow: {}, false", rate),
        }
        
        // Sleep for enough time to match the desired rate/second.
        thread::sleep(time::Duration::from_micros(
            (1000000.0 * (1.0 / rate as f64)) as u64,
        ));
    }
}

fn main() {
    // Create the TokenBucket object
    let mut token_bucket: TokenBucket = TokenBucket::new(5.0, 100.0);

    // Start of by acquiring 60 tokens per second for 10 seconds.
    run(&mut token_bucket, 60, 10);

    // Slow down to 2 tokens per second for 10 seconds.
    run(&mut token_bucket, 2, 10);
}

No runtime deps