I just want to know that how much Django is faster. if my model has 20,000 objects and I want to load them all in a single request like.
data = my_model.objects.all()
Then how much it takes time to loads on the client browser if he/she requesting the my_model data.
if we load only 10 list-objects does it is more than faster than the first approach?
data = my_model.objects.all()[:10]
Which is faster?