Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reubenmathew/flaskredistaskqueue
Task Queue experimentation with docker
https://github.com/reubenmathew/flaskredistaskqueue
Last synced: 1 day ago
JSON representation
Task Queue experimentation with docker
- Host: GitHub
- URL: https://github.com/reubenmathew/flaskredistaskqueue
- Owner: ReubenMathew
- Created: 2019-12-29T01:50:52.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T02:29:56.000Z (over 3 years ago)
- Last Synced: 2023-03-04T05:08:39.364Z (over 1 year ago)
- Language: Python
- Size: 21.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FlaskRedisTaskQueue
Task Queue experimentation with docker## redis docker instance
``` docker run --name some-redis -d redis ```## celery worker
``` celery -A worker --loglevel=info ```
add ```-P gevent ``` keyword to the end of worker command