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

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: A Comprehensive Guide to Setup and Configuration

Would you like to understand the basic concept of Apache Kafka? See our previous blog on the basic concept of Apache Kafka. Download Apache Kafka You can download Kafka version 3.5.0 from a link  https://kafka.apache.org/downloads.  Zookeeper You can download Zookeeper version 3.8.1 from a link  https://kafka.apache.org/downloads. Important: For Zookeeper, need to download the .bin-tar file. […]

Technology

Lombok Library

Lombok enhances the Java programming experience by incorporating convenient features into your editor. These include automated variable logging and class builders that require only one annotation. Download Lombok Liberary You can download the Lombok library(.jar) for Maven from this link with the latest version you want. We are referring here to version 1.18.28. Install the […]