• About Blog

    What's Blog?

    A blog is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text entries or posts.

  • About Cauvery Calling

    Cauvery Calling. Action Now!

    Cauvery Calling is a first of its kind campaign, setting the standard for how India’s rivers – the country’s lifelines – can be revitalized.

  • About Quinbay Publications

    Quinbay Publication

    We follow our passion for digital innovation. Our high performing team comprising of talented and committed engineers are building the future of business tech.

Wednesday, October 20, 2021

Understand and Analyze Java Thread Dump

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...

Monday, September 13, 2021

Redis Overview and Benchmark

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

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

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

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?

 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!

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

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...

Featured Post

Benefits & Best Practices of Code Review

Photo by Bochelly Code reviews are methodical assessments of code designed to identify bugs, increase code quality, and help developers lear...