5 followers
Software engineering concepts in a concise manner! Documenting my learning journey!
Overview of the Backend We have divided our entire backend into multiple microservices.- The Hotel service manages all the core business logic.- The...
The problem: In Django, we can set up Celery, and Postgres and then associate them with each other by providing them in the settings.py file. This is...
- What's hard delete:Performing a delete query to delete a record permanently from the table. - What's soft delete:Flagging a record as deleted in a...
What is gRPC? gRPC is a high-performance Remote Procedure Call (RPC) framework. gRPC enables efficient and simple communication. Microservices are...
What is a queue? Queue is a data structure that works on the principle of FIFO, First In First Out. So elements/tasks/items that enter the queue...
Message Broker: A message broker is software that enables applications, systems, and services to communicate with each other and exchange...