This crate implements request/async computation coalescing.
The starting point for this implementation was fasterthanlime's excellent article on request coalescing in async rust.
Caching of async computations can be a bit of a tough problem. If no cached value is available when we need it, we would want to compute it, often asynchronously. This crate helps ensure that this computation doesn't happen more than it needs to by avoiding starting new computations when one is already happening. Instead, we will subscribe to that computation and work with the result of it as well.
Example
use Cached;
pub async
Contributing
Feel free :)