The database backends. Using Django models to store task metadata.
-
cleanup()
- Delete expired metadata.
-
get_result(task_id)
- Get the result for a task.
-
get_status(task_id)
- Get the status of a task.
-
is_done(task_id)
- Returns True if task with task_id has been executed.
-
store_result(task_id, result, status)
- Mark task as done (executed).