Mercurial > public > sg101
annotate gpp/messages/tasks.py @ 522:82b97697312e
Created Celery tasks to process new posts and topics. Keep the updated topic set in Redis.
This is for tickets #194, #237, #239.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 18 Dec 2011 23:46:52 +0000 |
parents | 5171a5e9353b |
children |
rev | line source |
---|---|
bgneal@518 | 1 """ |
bgneal@518 | 2 Celery tasks for the messages application. |
bgneal@518 | 3 |
bgneal@518 | 4 """ |
bgneal@518 | 5 from celery.task import task |
bgneal@518 | 6 |
bgneal@518 | 7 |
bgneal@518 | 8 @task |
bgneal@518 | 9 def purge_messages(): |
bgneal@518 | 10 """ |
bgneal@518 | 11 Task to purge messages that have been deleted by both sender & receiver. |
bgneal@518 | 12 |
bgneal@518 | 13 """ |
bgneal@518 | 14 from messages.management.commands.purge_messages import Command |
bgneal@518 | 15 |
bgneal@518 | 16 command = Command() |
bgneal@518 | 17 command.execute() |