view gpp/forums/management/commands/update_forum_stats.py @ 470:d9b6c4ec1977

For #227; rework last commit slightly (r508). Adapt the desired forums signal signature to the queued_search API instead of the other way around.
author Brian Neal <bgneal@gmail.com>
date Wed, 17 Aug 2011 01:29:27 +0000
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()