We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HOL Blocking, TCP
HOL Blocking
TCP
The text was updated successfully, but these errors were encountered:
HTTP 1.0과 HTTP 1.1 차이 키워드 : HTTP Pipelining, Keep-Alive
HTTP 1.1은 HTTP 1.0을 개선해서 하나의 TCP Connection에 여러 요청을 보낼 수 있도록 했습니다. 이 것을 HTTP Pipelining이라 부릅니다.
HTTP Pipelining
하지만 HTTP Pipelining으로 인해서 HOL Blocking 문제가 발생합니다. HOL(Head Of Line) Blocking은 여러 요청 중 앞 선 요청이 처리되지 않으면 다른 요청들도 모두 지연되는 것을 말합니다.
또한 모든 요청마다 동일한 Header를 전송하고 응답했기 때문에 네트워크 자원을 낭비합니다.
이러한 문제를 해결하기위해 Image Spriting, Domain Sharding 그리고 CSS, JS 최소화 등으로 그 문제를 해결하고자했습니다.
구글의 SPDY 프로토콜을 기반으로 2015년 승인되었습니다.
Sorry, something went wrong.
No branches or pull requests
HTTP1.1와 HTTP2.0 차이점은 무엇인가요?
키워드
HOL Blocking
,TCP
The text was updated successfully, but these errors were encountered: