ASAaditya Shreeraminday-1-deep-dive-into-nodejs-event-loop.hashnode.dev路Sep 15, 2025 路 3 min readDay 15: Asynchronous Iterators & Generators in Node.js 馃殌When working with streams of data, APIs, or long-running I/O tasks, we often need a way to process items one by one without blocking the event loop. That鈥檚 where asynchronous iterators and generators in Node.js shine. They give us a clean, 鈥渇or-await...00
ASAaditya Shreeraminday-1-deep-dive-into-nodejs-event-loop.hashnode.dev路Sep 13, 2025 路 4 min readDay 14: Designing a Distributed Rate Limiting System (Token Bucket + Redis)Hey guys, eventhough we have discussed about load balancing previously, Rate limiting is a critical building block in modern distributed systems. It protects APIs from abuse, ensures fairness across clients, and prevents overload of backend services....00
ASAaditya Shreeraminday-1-deep-dive-into-nodejs-event-loop.hashnode.dev路Sep 12, 2025 路 3 min readDay 13: Designing a High-Throughput Logging System (ELK/Kafka pipelines)Hello guys, In modern application logging is more than just debugging. It鈥檚 critical for monitoring, analytics, security auditing, and incident response. When systems scale, handling millions of log events per second becomes challenging. Today, we鈥檒l...00
ASAaditya Shreeraminday-1-deep-dive-into-nodejs-event-loop.hashnode.dev路Sep 12, 2025 路 3 min readDay 12: Message Queues & Event-Driven Architectures (Kafka, RabbitMQ)Hello guys, we know modern distributed systems rarely run as one giant monolith anymore. They are broken into services like payment service, user service, notification service, etc. But this creates a problem:How do these services talk to each other ...00
ASAaditya Shreeraminday-1-deep-dive-into-nodejs-event-loop.hashnode.dev路Sep 11, 2025 路 3 min readDay 11: Database Replication & Sharding (MongoDB + SQL Tradeoffs)Hey guys, Let鈥檚 know about databases replication and sharding today. Databases don鈥檛 just need to store data, they need to be highly available, fault-tolerant, and scalable. That鈥檚 where replication and sharding come in. Both are core strategies, but...00