Size: 1215
Comment:
|
Size: 1271
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
## page was renamed from Celery | |
Line 8: | Line 9: |
* pip install celery |
Celery
Celery is an asynchronous task queue/job queue based on distributed message passing.
http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html
Slackware 14 installation
- easy_install celery
- pip install celery
Check installation:
Test app with Redis
Run redis:
Toggle line numbers
1 $redis-server &
2 $redis-cli
3 redis 127.0.0.1:6379> quit
App:
Toggle line numbers
1 $celery -A celeryTest worker --loglevel=info
Run task