본문 바로가기
Problem Solving

CGI vs WSGI vs ASGI

by REAL IT 2023. 7. 2.
728x90

CGI is a standard in which a web server and a application communicate. It is slow, because it starts a new process every time it gets a request from a client.

 

WSGI is another standard. It is faster than CGI, because a living process deals with the requests from clients.

 

ASGI is the latest one. It is compatible with WSGI work, and it can deal the requests from clients asynchronously.

 

'Problem Solving' 카테고리의 다른 글

Never ever do this mistake  (0) 2023.07.12
My first g++ compile ever  (0) 2023.07.12
using namespace std  (0) 2023.07.02
방송대 공략집 KNOU-HOW 배포  (0) 2023.07.02
파이썬 리스트 값 복사와 레퍼런스 구별  (0) 2023.06.28