Backend: Tokyo Tyrant - celery.backends.tyrant¶
celery.backends.tyrant
- class celery.backends.tyrant.Backend(tyrant_host=None, tyrant_port=None)¶
 Tokyo Cabinet based task backend store.
- tyrant_host¶
 - The hostname to the Tokyo Tyrant server.
 
- tyrant_port¶
 - The port to the Tokyo Tyrant server.
 
- get_result(task_id)¶
 - Get the result of a task.
 
- get_status(task_id)¶
 - Get the status for a task.
 
- is_done(task_id)¶
 - Returns True if the task executed successfully.
 
- open()¶
 - Get pytyrant.PyTyrant` instance with the current server configuration.
 
- store_result(task_id, result, status)¶
 - Store task result and status.