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
2,420 每月下载量
在bevy_mod_pies_spacetrader…中使用
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