2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2013-01-14 17:51:18 +01:00
|
|
|
from optparse import make_option
|
|
|
|
from django.core.management.base import BaseCommand
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.lib.cache_helpers import fill_memcached_cache, cache_fillers
|
2013-01-14 17:51:18 +01:00
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2013-03-26 17:24:02 +01:00
|
|
|
option_list = BaseCommand.option_list + (
|
|
|
|
make_option('--cache', dest="cache", default=None),)
|
2013-01-14 17:51:18 +01:00
|
|
|
help = "Populate the memcached cache of messages."
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
2013-03-26 17:24:02 +01:00
|
|
|
if options["cache"] is not None:
|
|
|
|
return fill_memcached_cache(options["cache"])
|
|
|
|
|
|
|
|
for cache in cache_fillers.keys():
|
2013-05-30 21:05:34 +02:00
|
|
|
fill_memcached_cache(cache)
|
2013-03-26 17:24:02 +01:00
|
|
|
|