Skip to content

Instantly share code, notes, and snippets.

@wraithan
Created September 20, 2011 23:43
Show Gist options
  • Select an option

  • Save wraithan/1230750 to your computer and use it in GitHub Desktop.

Select an option

Save wraithan/1230750 to your computer and use it in GitHub Desktop.
In [10]: timeit.Timer('Order.objects.all()[0]','from __main__ import Order').timeit(number=100)
Out[10]: 67.119456052780151
In [11]: timeit.Timer('Order.objects.all().order_by()[0]','from __main__ import Order').timeit(number=100)
Out[11]: 0.34228992462158203
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment