request coalescing term
merge concurrent identical requests into one
When N concurrent requests want the same uncached thing, only one goes to origin; the rest piggyback on that one's result. Often paired with single-flight at the cache layer. Different from batching (different items grouped) and hedging (duplicate races).