How to make effective communications for multiple (micro) services?

Case: Compiled software with many microservices and internal services.

Confidence lies in how to manage performance problems (network latency, resource size), getting multiple resources from many microservices at once.

I just can't submit 20 HTTP requests to access all the necessary resources.

0
rest php restful-architecture microservices
source share
1 answer

To reduce the number of requests made, you can create a facade that encapsulates incoming API calls. This allows you to get rid of expensive workarounds.

Netflix blogged about a very similar issue

http://techblog.netflix.com/2013/01/optimizing-netflix-api.html

http://techblog.netflix.com/2012/07/embracing-differences-inside-netflix.html

0
source share

All Articles