From 19cee41927e8e1e32b6d9eef6d8a43bfcca2f4dc Mon Sep 17 00:00:00 2001 From: riturajsacademic Date: Wed, 26 Jun 2019 10:56:54 -0700 Subject: [PATCH] updated API Gateways another pro\benefit --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4ff765ff..2cf90233 100644 --- a/README.md +++ b/README.md @@ -747,6 +747,7 @@ Additional benefits include: * Photos * Videos * Etc +* **Aggregates Requests** - aggregates multiple individual requests into a single request. This pattern applies when a single operation requires calls to multiple backend services. The client sends one request to the reverse proxy. The reverse proxy dispatches requests to the various backend services, and then aggregates the results and sends them back to the client. This helps to reduce chattiness between the client and the backend. ### Load balancer vs reverse proxy @@ -765,6 +766,7 @@ Additional benefits include: * [NGINX architecture](https://www.nginx.com/blog/inside-nginx-how-we-designed-for-performance-scale/) * [HAProxy architecture guide](http://www.haproxy.org/download/1.2/doc/architecture.txt) * [Wikipedia](https://en.wikipedia.org/wiki/Reverse_proxy) +* [API Gateways] (https://docs.microsoft.com/en-us/azure/architecture/microservices/design/gateway) ## Application layer