July 2017
Beginner to intermediate
340 pages
7h 43m
English
The second problem is the amount of network interactions added to build the same application. In the monolithic version, even if the code gets messy, everything happens in the same process, and you can send back the result without having to call too many backend services to build the actual response.
That requires extra attention on how each backend service is called, and raises a lot of questions like the following:
We will need to have a solid strategy to be able to answer all ...