quota 0.3.3

Fastest Lane-parallel Rate-limiter for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Fast keyed quota limiting with optional discrete refill intervals.
//!
//! `QuotaPool` is the main concurrent keyed limiter. `Quota` remains as a small direct
//! token counter used by the legacy direct-quota API and tests.

mod policy;
mod pool;
mod quota;
mod quota_map;
mod refill_rate;

pub use policy::*;
pub use pool::*;
pub use quota::*;
pub use refill_rate::*;