views:

37

answers:

2

How to find the execution time for various Model API Calls in Django.

+1  A: 

You can use django-logging it is very helpful and will show your queries with time execution.

+2  A: 

Use the Django debug toolbar.

Daniel Roseman