Skip to content

Instantly share code, notes, and snippets.

@dest81
Created February 10, 2021 17:03
Show Gist options
  • Save dest81/6e25a49cc550ab1e7f6e23786128cc70 to your computer and use it in GitHub Desktop.
Save dest81/6e25a49cc550ab1e7f6e23786128cc70 to your computer and use it in GitHub Desktop.
Number of queries in django
from django.conf import settings
settings.DEBUG = True
from django.db import connection, reset_queries
def num_queries(reset=True):
print(len(connection.queries))
if reset:
reset_queries()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment