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