mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-03 19:21:29 +08:00
Demonstrates replacing Celery with Gunicorn's dirty arbiters for background task processing. Includes: - 4 task workers: Email, Image, Data, Scheduled - Stateful workers with persistent connections/caches - Streaming progress for long-running tasks - Per-app worker allocation - Flask API with 15+ endpoints - Docker deployment (single container vs Celery's 4+) - Unit tests (19 tests) and integration tests - Migration guide from Celery
5 lines
86 B
Plaintext
5 lines
86 B
Plaintext
# Celery Replacement Example Dependencies
|
|
flask>=3.0.0
|
|
requests>=2.31.0
|
|
pytest>=8.0.0
|