Feb 12 · 10 min read · Understanding B-Tree vs LSM-Tree Storage Engines B-Tree storage engines organize data in sorted, balanced tree structures stored on disk. Each node contains keys and pointers, with leaf nodes holding actual data or references to data pages. Updates m...
Join discussionApr 20, 2025 · 7 min read · When building modern applications, have you ever wondered: Which database system should I use—SQL or NoSQL? In this blog, we won't discuss choosing between them, but instead, let's explore how SQL and NoSQL databases differ, how they operate, and wha...
Join discussion
Apr 11, 2025 · 4 min read · This is my first ever technical blog, so do correct if I am wrong, not so technically strong right now, just sharing my learnings. Etcd is a distributed key-value store, somewhat like Redis, but it operates quite differently under the hood (more on ...
Join discussionJul 20, 2023 · 8 min read · As an application developer, you must give some thought to your choice of database best suited for your needs since you are not going to implement your storage engine from scratch. In order to make the choice, you should at least have a rough idea of...
Join discussion