Batch request helps to reduce network overhead and improve performance. http calls from .NET core Let’s understand scenario for implementation We have Angular/React/UI application, and we have requirement to implement a functionality to download multiple data from multiple API. Here application have huge number of users who do this activity so we will learn how we will make http calls in batch to get better performance. Batch Requests Benefits Reduces network overhead — Fewer HTTP requests means less latency. Optimizes performance — The server can process multiple requests at once. Minimizes round trips — Reduces load on both the client and server. Improves efficiency — Especially useful for microservices or API gateways. Real time Use Case. We have screen and user selecting multiple records to download/execute. Consider below JSON we will be sending to server to execute. Here we will be clubbing all calls in one JSON file like below and will execute in pa...
.Net core Advance topics / Follow me @ https://medium.com/@devesh.akgec