Skip to content

Instantly share code, notes, and snippets.

@getadeo
Forked from hest/gist:8798884
Created December 7, 2015 10:23
Show Gist options
  • Save getadeo/b6a89bb90b5e8a01e21e to your computer and use it in GitHub Desktop.
Save getadeo/b6a89bb90b5e8a01e21e to your computer and use it in GitHub Desktop.
Fast SQLAlchemy counting (avoid query.count() subquery)
def get_count(q):
count_q = q.statement.with_only_columns([func.count()]).order_by(None)
count = q.session.execute(count_q).scalar()
return count
q = session.query(TestModel).filter(...).order_by(...)
# Slow: SELECT COUNT(*) FROM (SELECT ... FROM TestModel WHERE ...) ...
print q.count()
# Fast: SELECT COUNT(*) FROM TestModel WHERE ...
print get_count(q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment