Django Speed Optimizations
Tadej Krevh
CTO @ Marvelous I build scalable B2C and B2B SaaS, AI and mobile applications, full-stack, end-to-end, and lead remote development teams. Python & JavaScript / TypeScript.
Optimize your queries - use select_related and prefetch_related on your queryset, use caching (Redis/cacheops work well). It makes a great impact on your performance. With these things sorted out, you can scale more easily. #django #python #rest #drf #optimization