본문 바로가기
반응형

Django/Celery3

Celery beat으로 주기적으로 tasks 수행하기 docs.celeryproject.org/en/stable/userguide/periodic-tasks.html Periodic Tasks — Celery 5.0.5 documentation This document describes the current stable version of Celery (5.0). For development docs, go here. Periodic Tasks celery beat is a scheduler; It kicks off tasks at regular intervals, that are then executed by available worker nodes in the cluster. By defau docs.celeryproject.org 해당문서는 상기링크의.. 2021. 3. 16.
Django에서 Celery 이용하기 두번째 docs.celeryproject.org/en/stable/getting-started/next-steps.html#next-steps Next Steps — Celery 5.0.5 documentation This document describes the current stable version of Celery (5.0). For development docs, go here. Next Steps The First Steps with Celery guide is intentionally minimal. In this guide I’ll demonstrate what Celery offers in more detail, including how to a docs.celeryproject.org 해당 게.. 2021. 2. 28.
Django에 Celery 적용하기 첫번째 https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html First steps with Django — Celery 5.0.5 documentation docs.celeryproject.org 해당 게시물은 위 주소의 사이트의 내용을 기반으로 합니다. 일부 영양가 없는 내용은 제외되었습니다. Django에 Celery 적용하기 첫번째 Celery를 Django에 쓰려면 먼저 Celery 라이브러리 Instance를 정의해야 합니다! 장고에서는 이를 app이라 부르죠. 장고 프로젝트 구조가 아래와 같다고 합시다. - proj/ - manage.py - config/ - __init__.py - settings.py - urls.. 2021. 2. 28.
반응형