Example #1
0
    def handle(self, *args, **options):
        from people.models import PeopleSearchProxy
        from organizations.models import OrganizationsSearchProxy
        from groups.models import GroupSearchProxy
        from spreadsheets.models import SpreadsheetSearchProxy

        print "Repopulating people...",
        PeopleSearchProxy.populate_cache()
        print "done."
        print "Repopulating organizations..."
        OrganizationsSearchProxy.populate_cache()
        print "done."
        print "Repopulating groups..."
        GroupSearchProxy.populate_cache()
        print "done."
        print "Repopulating spreadsheets..."
        SpreadsheetSearchProxy.populate_cache()
        print "done."