carpool 0.1.0

Deduplicate and batch concurrent async requests through a collection window
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Deduplicate and batch concurrent async requests.
//!
//! Concurrent requests within a collection window are merged into a single downstream batch,
//! and duplicate inputs share one result.
//! No cache; built on `tokio`.
//!
//! This version ships [`queue`] - the pending-request queue underneath the batching side;
//! the layers on top are not released yet.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub mod queue;