This includes
docker-compose up
add -d
run in backgrounddocker-compose down
Celery Documentation Flower Documentation
### Starting the worker
```shell
celery -A proj worker
Worker Options:
-c, --concurrency
Number of child processes processing the
queue. The default is the number of CPUs
available on your system.
celery worker --help
can get more infomation.
add --pool=solo
option
>>> from tasks import add
>>> add.hello()
If your celery app set rsult backend
>>> from tasks import add
>>> result = add.hello()
The ready() method returns whether the task has finished processing or not:
>>> result.ready()
>>> False
You can wait for the result to complete, but this is rarely used since it turns the asynchronous call into a synchronous one:
>>> result.get(timeout=1)
>>> 'hello world'