Micro Services Best Practices
We are using monolithic of single code-based application for long. From when client-server solutions have been evolved. And it continues on internet solutions era as well. But the monolithic architecture of a big application has many difficulties as well. Most importantly for deployment and scalability. As it is tightly coupled with all the modules. Therefore the new way of application architecture evolved microservice architecture. Where the whole problem is divided into several small parts. Each part solves a small set of problem or implementations. And then comes this architecture’s complexities as well. Like how one microservice will talk to another microservice and so. Who are interested and .Net developer and architect can download open source microservices containers with whole application here https://github.com/dotnet-architecture/eShopOnContainers I am trying to describing microservices architecture best practices with a small example. Which will help the beginner...