Recent posts

What is CAP theorem?

4 minute read

The CAP Theorem is a foundational concept in distributed systems, reminding us that no system can achieve Consistency (C), Availability (A), and Partition To...

Shallow Copy vs Deep Copy in Python

2 minute read

In Python, shallow copy and deep copy are ways of copying objects, but they differ in how they handle nested objects like lists or dictionaries within the co...

Message Queues: RabbitMQ, Redis and Kafka

5 minute read

What Are Message Queues? Layman Terms A message queue is like a post office or delivery service. When one part of a system wants to send information to anoth...