Mercurial > public > sg101
view gpp/forums/management/commands/update_forum_stats.py @ 501:0ac39f006eb2
For #240, tweaked the Javascript to be able to submit the form when enter is typed.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 03 Dec 2011 03:14:13 +0000 (2011-12-03) |
parents | e10fa0d8e7ad |
children |
line wrap: on
line source
""" update_forum_stats.py - A management command to calculate and update the cache with the forum statistics. These are done out of the request / response cycle because doing a count on the Post table is expensive under MySQL and InnoDb. """ from django.core.management.base import NoArgsCommand, CommandError from forums.stats import update_stats class Command(NoArgsCommand): help = "Calculates and updates the cache with forums statistics" def handle_noargs(self, **opts): update_stats()