PostgreSQL vs MongoDB vs Cassandra: Multi-Node and How to Choose
Replication, sharding, CAP tradeoffs, and a decision framework for choosing between PostgreSQL, MongoDB, and Cassandra in a distributed production system.
Tag archive
Replication, sharding, CAP tradeoffs, and a decision framework for choosing between PostgreSQL, MongoDB, and Cassandra in a distributed production system.
As businesses increasingly rely on cloud infrastructure, managing cloud environments efficiently has...
Are you looking to dive into the world of NoSQL databases? Apache Cassandra is a fantastic place to...
Enterprise IT environments demand stability, security, and high performance—especially when...
I got asked about Cassandra compression by someone recently and didn't do it justice on the spot. The...

Chat sounds like the easy case until the message table grows past what a single relational database can handle. This is the story of why Discord moved its messages to a wide column store and how they modeled the data.
In today’s fast-moving digital landscape, successful software delivery depends on strong leadership...
Introduction Apache Kafka and Apache Cassandra pair effectively because they complement...
How a broken compile on PHP 8 became a two-year open-source project, a C-to-C++ migration I regret, and a codebase I still want to ship properly.
A few months ago I was freelancing on a client project. Every API call was slow. Some were taking...
Most applications need to persist state. In a chat application, that state is massive, constantly...
How Cassandra's LSM engine works end to end - CommitLog, Memtable, SSTable, Bloom filters, and compaction. Why writes are fast and reads are complex before cleanup runs.