Posted inArticle Microservices Spring Boot Guide to Modulith with Spring Boot Posted by By Dragon January 17, 2025 Modular Monolith is an architectural style where our source code is structured on the concept…
Posted inFeed Microservices From Monolith to Microservices: Key Transition Patterns Posted by By Dragon January 17, 2025 Monolithic architecture is a software development approach in which the entire application is built as…
Posted inArticle GCP Networking Enable Internet access in a Private Network (GCP) Posted by By Dragon January 16, 2025 Scenario - Bob tries configure the VM to his requirements and has to install &…
Posted inFeed Networking What happens when you type google .com into a browser Posted by By Dragon January 13, 2025 The Domain Name System (DNS) is the phonebook of the Internet. Humans access information online…
Posted inFeed Networking System Design Crash Course About Message Queues Posted by By Dragon January 10, 2025 Asynchronous communication has become an important strategy for modern software systems, particularly in distributed and…
Posted inFeed Microservices System Design API Gateway Posted by By Dragon January 8, 2025 API Gateways are essential components in modern software architectures, particularly microservices-based systems. They act as…
Posted inFeed Networking What is a webhook? Posted by By Dragon January 6, 2025 Assume we run an eCommerce website. The clients send orders to the order service via…
Posted inFeed Networking Polling vs. Webhooks Posted by By Dragon January 6, 2025 1. Polling Polling involves repeatedly checking the external service or endpoint at fixed intervals to…
Posted inFeed Database System Design Pessimistic vs Optimistic Locking Posted by By Dragon January 4, 2025 Locks are essential to maintain data consistency and integrity in multi-user environments. They prevent simultaneous…
Posted inArticle Microservices System Design Resilient Microservice Design Patterns –Circuit Breaker Pattern Posted by By Dragon January 4, 2025 Coming soon