Backend: Cache - celery.backends.cache¶
celery.backends.cache
- class celery.backends.cache.Backend(*args, **kwargs)¶
Backend using the Django cache framework to store task metadata.
- get_result(task_id)¶
- Get the result of a task.
- get_status(task_id)¶
- Get the status of a task.
- is_done(task_id)¶
- Returns True if the task has been executed successfully.
- store_result(task_id, result, status)¶
- Store task result and status.