Photo by Mel PooleMicroservicesAlso known as the microservices architecture, is an architectural style that structures an application as a collection of services that are:Easily Maintainable and TestableLoosely CoupledIndependently DeployableOrganized around Business CapabilitiesOwned...
Wednesday, October 20, 2021
Monday, September 13, 2021
Redis Overview and Benchmark
September 13, 2021Application Performance, Best Practices, Caching, Performance Management, Scalable Applications
No comments
View(s)


Image Courtesy MoriohReDiS which stands for Remote Directory Server, is an open source in-memory data store, used as a database and as a cache. Redis provides data structures such as strings, hashes, lists, sets and sorted sets. Redis has built-in replication, Lua...
Wednesday, August 4, 2021
Retry or Stability Pattern
August 04, 2021Design Patterns, Design Principles, Distributed Systems, Retry/Stability Pattern, System Design
No comments
View(s)


Photo by Brett JordanOne of the key characteristic of microservices architecture is inter-service communication. We can split a monolithic application into multiple smaller applications called microservices. Each microservice is responsible for a single feature or domain and...
Monday, July 19, 2021
Understanding Load Balancer
July 19, 2021Algorithms, API Gateway, Distributed Systems, Load Balancer, Reverse Proxy, System Design
2 comments
View(s)


Photo by Jon FlobrantA load balancer is an important component of any distributed system. It helps to distribute the client requests within a cluster of servers to improve the responsiveness and availability of applications or websites.It distributes workloads uniformly across...
Thursday, July 8, 2021
Understanding Forward and Reverse Proxy

Photo Courtesy UnsplashWhat is Forward Proxy Server?A forward proxy, often called a proxy server or web proxy, is a server that sits in front of a group of machines within a same network. When these computers make requests to sites and services usually external to the network...
Thursday, June 24, 2021
Template Method Pattern - Skeleton is Defined in Base Class
June 24, 2021Best Practices, Design Patterns, Design Principles, Object Oriented Design, System Design
No comments
View(s)


Photo Courtesy UnsplashWhat is the Template Method Design Pattern?The Template Method Design Pattern defines a sequence of steps of an algorithm and allows the subclasses to override the steps but do not allow to change the sequence. The Key to the Template Design Pattern is...
Tuesday, June 15, 2021
Materialized Views in RDBMS - Is it a View or Table?
June 15, 2021Application Performance, Caching, Database, Materialized Views, Relational Databases, Scalable Applications
2 comments
View(s)


Google uses structured data to understand the content on the page and use that data to display in richer features in the search results.Below you can see the difference in the search result data provided by Google for the OnePlus 8T product from official site vs amazon...
Tuesday, May 25, 2021
Singleton Design Pattern - Build It, Break It and Fix It!
May 25, 2021Best Practices, Design Patterns, Object Oriented Design, System Design
1 comment
View(s)


Photo Courtesy UnsplashSingleton pattern is one of the simplest design patterns and falls under creational pattern as this pattern provides one of the best ways to create an object. This pattern involves a single class which is responsible for creating an object while making...
Friday, May 7, 2021
Working With ThreadPoolTaskExecutor of Spring
May 07, 2021Executor Service, Java, Spring Framework, System Design, Thread Pool
No comments
View(s)


Photo Courtesy UnsplashThreadPoolTaskExecutor is a java bean that allows for configuring a ThreadPoolExecutor in a bean style by setting up the values for the instance variables like corePoolSize, maxPoolSize, keepAliveSeconds, queueCapacity and exposing it as a Spring...