Anand Tripathi

Deep dive into Websockets with Python

Before going with Websockets with python, firstly we will understand what is Websockets? Websocket is a communications protocol, providing full-duplex bi-directional communication over a single TCP connection. To understand Websockets, first, we have to have a clear understanding of HTTP protocol cause both go hand in hand. HTTP Protocol HTTP is a protocol that allows the fetching of …

Deep dive into Websockets with Python Read More »

Complete guide to production-ready celery configuration

A complete guide to production-ready Celery configuration

Before diving into production-ready celery configuration, let’s get an understanding of why we use Celery in the first place. Whenever we work on some data-intensive application or some long-running tasks, it generally slows down the performance of the application, and users have to wait until the task is completed. It was okay in the legacy …

A complete guide to production-ready Celery configuration Read More »