top of page
Search


Bare Metal vs Virtual Machines vs Containers Which is Right for Your Infrastructure
Choosing the right infrastructure for your applications can be challenging. With options like bare metal servers, virtual machines (VMs), and containers, each offers unique benefits and trade-offs. Understanding these differences helps you build a system that fits your performance needs, budget, and management preferences. This post breaks down the key features of bare metal, VMs, and containers. It explains how they work, their advantages and disadvantages, and when to use e
Rohan Roy
1 day ago4 min read
Liquibase
What is Liquibase? Liquibase is an open-source "version control for your database." Just as Git tracks changes to your application code, Liquibase tracks changes to your database schema (tables, columns, indexes). In traditional development, managing database changes is often manual and risky: one developer runs a CREATE TABLE script locally but forgets to give it to the team, or the production database drifts out of sync with development. Liquibase solves this by treating
Rohan Roy
1 day ago2 min read
Cassandra
Apache Cassandra is a distributed, NoSQL database engineered for large-scale, real-time applications with high availability ,...
Rohan Roy
Sep 32 min read
Object Class and its Equals & HashCode methods
Object Class (exists excerpts from docs.oracle.com) Object class is part of the java.lang package. Class Object is the root of the class...
Rohan Roy
Dec 8, 20222 min read
bottom of page