arl

Crates.ioarl
lib.rsarl
version0.2.0
sourcesrc
created_at2022-11-07 20:52:56.232917
updated_at2023-10-08 09:28:48.68837
descriptionA rate limiter to be used with tokio
homepage
repositoryhttps://github.com/lukaszwojtow/arl
max_upload_size
id707462
size24,829
(lukaszwojtow)

documentation

README

ARL - Async Rate Limiter

Arl's main purpose is to simplify dealing with various APIs' limits. For example, GitHub allows 5000 requests per hour. Keeping a timer inside your business logic can obscure the main flow and will add lots of boilerplate.

With Arl it's possible to limit a task's speed with single line of code. As an added benefit, the limiter can be cloned and send to other threads/tasks and all of them will see the same instance and adhere to the same limits.

Example:

    // Create a rate limiter. Limit speed to 10 times in 2 seconds.
    let limiter = RateLimiter::new(10, Duration::from_secs(2));
    // Spawn 4 threads.
    for i in 0..4 {
        // RateLimiter can be cloned - all threads will use the same timer/stats underneath.
        let limiter = limiter.clone();
        tokio::spawn(async move {
            // Create some imaginary client (for a rest service or sth).
            let client = Client::new();
            // Do things in a loop. Notice there is no `sleep` in here.
            loop {
                // Wait if needed. First 10 will be executed immediately.
                limiter.wait().await;
                // Call some api here.
                let response = client.call();
            }
        });
    }
Commit count: 2

cargo fmt