Django ORM Async in 2026 — What Works, What Bites, and the Patterns That Stuck

Practical Django async ORM: aget / acreate / aupdate, transaction.atomic in async, async-safe context, and migration from sync code.

May 4, 2026 · 4 min · 779 words · Manvendra Rajpoot

Django Channels & WebSockets in 2026 — Real-Time Without Tears

Practical Django Channels: consumer design, auth in WebSocket connections, channel layers via Redis, scaling, and where to reach for ASGI alternatives.

May 2, 2026 · 4 min · 688 words · Manvendra Rajpoot

Django + Celery in 2026 — Background Jobs Without the Footguns

Production Django + Celery: task signatures, idempotency, retry strategies, beat scheduling, monitoring, and how to avoid the lost-job class of bugs.

May 2, 2026 · 4 min · 721 words · Manvendra Rajpoot

Django Ninja vs DRF vs FastAPI in 2026 — How to Pick

When to pick Django Ninja, DRF, or FastAPI. The strengths, the type-safety story, async maturity, and the team / project shape that fits each.

April 30, 2026 · 3 min · 452 words · Manvendra Rajpoot

Django 5 Async — Views, ORM, and Channels in 2026

How async Django actually works in 2026 — async views, the async ORM, sync_to_async/async_to_sync gotchas, ASGI deployment with Daphne/Uvicorn, and where Channels still earns its keep.

April 28, 2026 · 6 min · 1246 words · Manvendra Rajpoot

Django vs FastAPI: Which One Should You Pick in 2026?

An opinionated, side-by-side comparison of Django and FastAPI covering philosophy, features, performance, and when to pick each (or both).

April 28, 2026 · 6 min · 1276 words · Manvendra Rajpoot

Deploying Django to Production: A Pragmatic Checklist

An end-to-end guide to deploying Django to production: app server, reverse proxy, database, static files, env config, security hardening, and what to monitor.

April 28, 2026 · 7 min · 1458 words · Manvendra Rajpoot

Building a REST API with Django REST Framework: A Practical Tutorial

End-to-end DRF tutorial — build a real CRUD API with serializers, viewsets, JWT auth, permissions, filtering, and pagination.

April 28, 2026 · 6 min · 1221 words · Manvendra Rajpoot

Django ORM Deep Dive: QuerySets, N+1, and Making the Database Behave

Everything I wish I’d known about the Django ORM earlier — how querysets really work, the N+1 problem, select_related vs prefetch_related, and the patterns that keep production code fast.

April 28, 2026 · 7 min · 1410 words · Manvendra Rajpoot

Django Conquered: Project Setup and Anatomy

A guided walkthrough of installing Django, scaffolding a project, registering an app, and understanding what every generated file is for.

April 28, 2026 · 5 min · 924 words · Manvendra Rajpoot