You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Request collapsing" is an application pattern that limits the number of remote calls by grouping multiple requests into a single one. It is appropriate to retrieve data belonging to the same business domain through a third-party service.
It helps reduce:
network load,
high network latency impact,
per-request licensing costs
Example
Retrieving customers' orders from their client accounts requires information about the ordered product, the billing address and the payment status. It is better for the order management service to allow retrieving these three sets of data in a single call instead of sending three separate requests to the order management service.
Validation rule
The number of ...
is equal to or less than
requests sent to retrieve data belonging to the same business domain through a third-party service