Deduplicate in-flight requests automatically. Saves costs, prevents thundering herd.
const dedup = new RequestDeduplicator();
const result = await dedup.execute('user:123', () => fetchUser(123));
// Second call waits for first result, doesn't make new requestSolves: Duplicate API calls, cache stampedes, network waste. License: MIT
Sponsored by Ferrow
Part of the ferrow-toolkit collection · Sponsored by Ferrow