2023. 10. 7. 13:00ㆍ파이썬
Celery는 비동기 분산 처리에 사용된다. broker를 넣어줘야 하는데 redis를 이용할 수 있다.
Reference
https://beomi.github.io/2017/03/19/Introduction-to-Celery/
[번역]셀러리 입문하기 - Beomi's Tech blog
2017-03-19 [번역]셀러리 입문하기 글 작성 시점 최신 버전 v4.0.2의 문서입니다. 원문: http://docs.celeryproject.org/en/latest/getting-started/introduction.html 셀러리 입문하기 태스크 큐란 무엇인가? (What’s a Task Qu
beomi.github.io
http://dgkim5360.tistory.com/entry/python-celery-asynchronous-system-with-redis
Python Celery with Redis: 비동기 작업 큐(queue)
비동기 작업 큐(queue)를 python에서 활용할 수 있는 celery를 소개한다. 웹서버가 처리하기엔 무거운 연산(e.g. pdf 변환, 과학적 계산 프로세스 등)을 그냥 서버에 집어넣으면 사용자는 웹서버의 처리
dgkim5360.tistory.com
https://github.com/JaeYeopHan/Interview_Question_for_Beginner/tree/main/Python#celery
https://spoqa.github.io/2012/05/29/distribute-task-with-celery.html
Celery를 이용한 긴 작업 처리
처리 시간이 오래 걸리는 작업을 Celery를 통해 개선하는 방법을 알아봅니다.
spoqa.github.io
'파이썬' 카테고리의 다른 글
[파이썬] 메모리 누수와 약한 참조에 대한 나름의 이해 (1) | 2023.10.09 |
---|---|
[파이썬] 클래스 메소드에 대한 나름의 이해 (0) | 2023.10.05 |
[파이썬] Class 변수에 대한 나름의 이해 (0) | 2023.10.05 |
[파이썬] method에 대한 나름의 이해 (0) | 2023.10.04 |
[파이썬] Generator에 대한 나름의 이해 (0) | 2023.10.03 |