Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- WSGI
- asgi
- elasticsearch
- intervals
- event loop
- AZURE
- DevOps
- EKS
- dockerfile
- EC2
- AWS
- IAC
- Python
- terraform
- Kubernetes
- 쿠버네티스
- ansible
- asyncio
- FastAPI
- Service
- K8S
- 자바스크립트
- ebs
- Deployment
- Network
- docker
- leetcode
- AZ-900
- Django
- POD
Archives
- Today
- Total
목록gunicorn (1)
궁금한게 많은 개발자 노트
[ FastAPI ] 비동기 메커니즘
FastAPI 프레임워크의 구성요소와 FastAPI가 사용하는 비동기 메커니즘에 대해 알아보고자 합니다. 우선 FastAPI가 각광받는 이유로는 높은 속도와 성능(Starlette와 Pydantic), ASGI를 기반한 비동기(async/await), 코드 변화에 따른 API문서화(openAPI)등을 꼽을 수 있습니다. WSGI(Web Server Gateway Interface): 웹서버와 웹프레임워크 사이에서 통신하기 위한 인터페이스 (동기) ex) gunicorn ASGI(Asynchronous Server Gateway Interface): WSGI를 계승하고, Asyncio라이브러리를 이용한 비동기 처리 가능 높은 속도와 성능이 보장되는 이유는 FastAPI는 ASGI서버인 Starlette 프..
Back End
2023. 12. 11. 10:10