|
11 月之前 | |
---|---|---|
media | 11 月之前 | |
README.md | 11 月之前 | |
docker-compose.yml | 11 月之前 | |
tasks.py | 11 月之前 |
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:
### woker in Windows
add ``` --pool=solo ``` option
### Calling the task
```shell
>>> from tasks import hello
>>> hello.delay()
If your celery app set rsult backend
>>> from tasks import hello
>>> result = hello.delay
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'