Concept Flow - Why batch operations reduce round trips
Client wants to send 5 requests
Option 1: Send 5 separate requests
5 round trips: Request -> Server -> Response
Option 2: Send 1 batch request with 5 operations
1 round trip: Batch Request -> Server -> Batch Response
Shows how sending multiple operations in one batch reduces the number of request-response cycles between client and server.