🤝 Merge pull request #126 from yashikakhurana/feature/celery_beat_task_queue

feat: Django celery beat task scheduler
This commit is contained in:
Jeff Triplett 2021-05-15 06:12:26 -05:00 committed by GitHub
commit 17e4e84587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -218,6 +218,7 @@ _For a complete listing of all available packages, see [Django Packages](https:/
- [django-rq](https://github.com/rq/django-rq) - Integration for Redis Queue. - [django-rq](https://github.com/rq/django-rq) - Integration for Redis Queue.
- [django-redis](https://github.com/niwinz/django-redis) - Full featured Redis cache backend for Django. - [django-redis](https://github.com/niwinz/django-redis) - Full featured Redis cache backend for Django.
- [celery](https://github.com/celery/celery) - Robust and broker-agnostic task queues for bigger, performance-focused projects. - [celery](https://github.com/celery/celery) - Robust and broker-agnostic task queues for bigger, performance-focused projects.
- [django-celery-beat](https://github.com/celery/django-celery-beat) - A periodic task scheduler with database configured by Django's Admin Panel.
- [django-dramatiq](https://github.com/Bogdanp/django_dramatiq) - Task processing library with a focus on simplicity, reliability and performance. - [django-dramatiq](https://github.com/Bogdanp/django_dramatiq) - Task processing library with a focus on simplicity, reliability and performance.
### Testing ### Testing