Lets suppose the following use case, the user makes a request to product with id=1, 5 times in 50ms, and that the request takes 100ms. in this case we end-up with 5 requests to the same resource which add useless load on CTP.
In order to solve this problem, we can use dataloader which would allow us to use only 1 platform request to resolve all the pending calls.
linked to #192