updated API Gateways another pro\benefit

pull/294/head
riturajsacademic 2019-06-26 10:56:54 -07:00 committed by GitHub
parent 33431e61a9
commit 19cee41927
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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