pull/294/merge
riturajsacademic 2024-12-02 18:03:01 +00:00 committed by GitHub
commit 3d409ce7df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -751,6 +751,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
@ -769,6 +770,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