7个版本

0.2.3 2023年12月11日
0.2.2 2022年11月17日
0.2.0 2022年6月9日
0.1.3 2022年5月26日
0.1.1 2022年1月28日

#4 in #token-bucket

Download history • Rust 包仓库 334/week @ 2024-04-20 • Rust 包仓库 419/week @ 2024-04-27 • Rust 包仓库 447/week @ 2024-05-04 • Rust 包仓库 581/week @ 2024-05-11 • Rust 包仓库 603/week @ 2024-05-18 • Rust 包仓库 603/week @ 2024-05-25 • Rust 包仓库 442/week @ 2024-06-01 • Rust 包仓库 573/week @ 2024-06-08 • Rust 包仓库 723/week @ 2024-06-15 • Rust 包仓库 495/week @ 2024-06-22 • Rust 包仓库 683/week @ 2024-06-29 • Rust 包仓库 723/week @ 2024-07-06 • Rust 包仓库 485/week @ 2024-07-13 • Rust 包仓库 825/week @ 2024-07-20 • Rust 包仓库 576/week @ 2024-07-27 • Rust 包仓库 378/week @ 2024-08-03 • Rust 包仓库

2,420 每月下载量
bevy_mod_pies_spacetrader…中使用

MIT/Apache

19KB
317

分层令牌桶

本包实现了具有固定结构的分层令牌桶算法 https://en.wikipedia.org/wiki/Token_bucket#Hierarchical_token_bucket

该包不依赖于周期性更新来维护令牌桶,这意味着可以在请求令牌之前更新

use htb::*;
use std::time::Duration;

#[derive(Clone, Copy, Eq, PartialEq)]
enum Rate {
    Long,
    Short,
}

impl From<Rate> for usize {
    fn from(rate: Rate) -> Self {
        match rate {
            Rate::Long => 0,
            Rate::Short => 1,
        }
    }
}

// let's implement a rate limiter with two required properties:
// - packet rate should not exceed 250 msg per second
// - packet rate should not exceed 1500 msg per 15 seconds

let mut htb = HTB::new(&[
    BucketCfg {
        this: Rate::Long,
        parent: None,
        rate: (1500, Duration::from_secs(15)),
        capacity: 0,
    },
    BucketCfg {
        this: Rate::Short,
        parent: Some(Rate::Long),
        rate: (250, Duration::from_secs(1)),
        capacity: 250,
    },
])?;

// we are allowed a single 250 token burst
assert!(htb.take_n(Rate::Short, 250));
assert!(!htb.peek(Rate::Short));
htb.advance(Duration::from_secs(1));

// after this point established packet rate obeys "long" indefinitely
for _ in 0..10 {
    assert!(htb.take_n(Rate::Short, 100));
    assert!(!htb.peek(Rate::Short));
    htb.advance(Duration::from_secs(1));
}

// if we stop consuming tokens for some time
htb.advance(Duration::from_secs(10));
assert!(htb.take_n(Rate::Short, 250));
// we get more bursts
assert!(!htb.peek(Rate::Short));
# Ok::<(), Error>(())

依赖项

~11–435KB