Category Microservices

Backend For Frontend (BFF) Pattern

In a microservices architecture, each microservice exposes a set of (typically) fine-grained endpoints. This fact can impact the client-to-microservice communication. A direct client-to-microservice communication architecture could be good enough for a small microservice-based application, especially if the client app is…

Caching in AWS

As cloud computing is becoming a more common way of storing and managing data for all small to large-sized enterprises, the importance of understanding data usage patterns and the distance from the requestor entity has become vastly important. Distance is…

An Introduction to Micro Frontends

The concept of micro frontends, first introduced on the 2016 Thoughtworks Technology Radar, is becoming increasingly popular with engineers and development teams. Since its introduction, more and more teams have utilized this method of architecture to help manage the complexity…

Principles for microservices integration

Out of the many advantages of microservices, the most significant motivations are scale and autonomy for business units. These go hand in hand. However, we still need to create an integrated experience that makes sense for the end user. It’s…

Monolithic vs Microservices

Strengths of Monolotic Architecture Easier Debugging and End-to-End Testing: Unlike Microservice Architecture, Monolithic Applications are much easier to debug and test. Since a Monolithic Application is a single indivisible project, you can perform end-to-end tests much faster. Easy Deployment: One advantage associated with the Monolithic Applications being a single piece is easy…