Django tips, order randomly
Using Django Queryset, to get a random order by, just use the ? parameter Django doc : https://docs.djangoproject.com/en/dev/ref/models/querysets/#django.db.models.query.QuerySet.order_by
Each week, I share a technical trick that I learned
Using Django Queryset, to get a random order by, just use the ? parameter Django doc : https://docs.djangoproject.com/en/dev/ref/models/querysets/#django.db.models.query.QuerySet.order_by
To manage a process on big queryset without overload the DB and the RAM, set the following loop: ⚠️ you need to set a order_by …