You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The prefetch_related call removes any need for the explicit call to all. The current method is suboptimal since two queries are performed: the all and the prefetch_related.
The
prefetch_related
call removes any need for the explicit call toall
. The current method is suboptimal since two queries are performed: theall
and theprefetch_related
.https://github.com/compserv/hknweb/blob/master/hknweb/candidate/views/officer_portal.py#L186
Also highkey, this entire section could probably be stuck into a chain of
values
into acount
aggregation.The text was updated successfully, but these errors were encountered: