curtisullerich / attendance

An attendance application built for the Iowa State University Cyclone Football 'Varsity' Marching Band.
MIT License
6 stars 2 forks source link

Reduce datastore requests to prepare /director/attendance #248

Closed danstiner closed 10 years ago

danstiner commented 10 years ago

Results in a 2x improvement bringing page generation time down from 8s to 4s

Based on data from the app-stats plugin part of the reason /director/attendance was so slow was the huge number of "datastore_v3.RunQuery" calls to look up the list of absences for each user. If we instead follow the advice of an old, wise TODO we can get all abscense in a single batch query and then sort them out by user.

danstiner commented 10 years ago

Ready to merge.