Skip to content

Instantly share code, notes, and snippets.

@nvie
Created November 29, 2013 08:59
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nvie/7703144 to your computer and use it in GitHub Desktop.
Save nvie/7703144 to your computer and use it in GitHub Desktop.
Really useful helper that I use constantly to force myself to write more efficient Django queries.
from contextlib import contextmanager
from django.conf import settings
from django.db import connection
@contextmanager
def no_queries_allowed():
"""This is a helper method that makes it easier during development, by
throwing an exception when any queries are made within its block. Using
an ORM, it's sometimes hard to discover what statements lead to implicit
queries. Wrapping this contextmanager around such blocks makes sure that
this cannot happen.
This is only works in debug mode, as in non-debug mode the
connection.queries list isn't available for inspection. In production,
this is a no-op.
"""
if settings.DEBUG:
queries = connection.queries
num_queries = len(queries)
yield
if settings.DEBUG:
assert num_queries == len(queries), \
"A query was made, but this was explicitly forbidden! " \
"Queries were: {}".format(queries[num_queries:])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment