Category: Database, Data

For pure frontend developers who doesn't have much exposure to backend or middleware technology, microservices are a vague thing. They might have high-level introduction.

But in microservice, since we have an independent database for each service, in case of any problem with any particular database, it certainly does not affect other services and your application does not crash as a whole.

In this process, although we have individual DB for the service and services never connect to the same DB, the process takes time and responds slowly because it is dependent on various responses.

Although the concepts and architecture of microservices are complex in nature, it is rapidly being used in application development.

Related Articles