Skip to content

Instantly share code, notes, and snippets.

@leofaster
Last active June 30, 2021 08:39
Show Gist options
  • Save leofaster/c5acf2fd387f3ee937d73c38271921a2 to your computer and use it in GitHub Desktop.
Save leofaster/c5acf2fd387f3ee937d73c38271921a2 to your computer and use it in GitHub Desktop.
Count the numbers of hits to database
from django.db import connection
print(len(connection.queries))
from django.db import reset_queries
reset_queries()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment