info@equalefforts.com

Technology

Start multiple Liferay servers simultaneously on same machine

Problem How to start two or more Liferay servers simultaneously with different ports? Sometimes, we need to start multiple Liferay servers on the same system to locally debug problems with clustering or remote staging features. Solution We can modify the Liferay Tomcat server configuration and change the Elasticsearch properties for two separate Liferay instances (e.g., […]

Technology

Understanding the Basics of CQRS Design Patterns

What is the CQRS Pattern? CQRS (Command Query Responsibility Segregation) is an architectural pattern that emphasizes the separation of commands (methods that change state) from queries (methods that read state). It is based on the Command Query Separation (CQS) principle, which was first introduced by Bertrand Meyer. CQRS recommends that we classify the operations performed […]

Technology

Microservice Architecture

What are Microservices? Microservices are a modern software development approach in which the application code is delivered in small, manageable pieces that operate independently of one another. It’s a method to build a distributed system that emphasizes fine-grained services, is loosely coupled, and focuses on a single business responsibility. Introduction to Microservices Although there is […]

Technology

Mongo DB

An Introduction to MongoDB: A Powerful NoSQL Database. MongoDB is a popular database management system that belongs to the family of NoSQL databases. It’s renowned for its flexibility, scalability, and ease of use. MongoDB, an open-source NoSQL database, was developed in 2009. It is known for its scalability, robustness, and cost-free nature. Additionally, MongoDB offers […]

Technology

SAGA Design Pattern

What Is Saga Architecture Pattern? The Saga design pattern is a useful tool for ensuring data consistency when dealing with distributed transactions across microservices. This pattern involves creating a series of transactions that update microservices sequentially and trigger events to initiate the next transaction for the next microservice. SAGA is a design pattern that consists […]

Technology

Apache Kafka vs RabbitMQ

What Is Apache Kafka? Kafka is an open-source distributed event streaming platform written in Java and Scala. It is designed for high-throughput raw data and functions as a pub/sub message bus optimized for streams and high-data replay. Kafka uses a “pull-based” approach for message batching and provides an adapter SDK for custom system integration. Despite […]

  • 1
  • 2