Skip to content
New issue

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

웹 브라우저에 URL을 입력했을 때 일어나는 일에 대해 설명해 주시겠습니까?_준팍 #20

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

junpakPark
Copy link
Collaborator

📄 학습 내용

  • 웹 브라우저에 URL을 입력했을 때 일어나는 일에 대해 설명해 주시겠습니까?
  • GSLB와 CDN은 왜 적용해야합니까?
  • GSLB와 CDN을 적용한 경우, 어떤 과정을 거치게 됩니까?
  • 현재 회사의 서비스가 GSLB와 CDN이 적용되어 있고, 로그인 방법은 세션을 사용한다고 가정합시다. 유저가 기존에 로그인 했던 서버가 죽어서 다른 서버에 연결되었을 경우 세션은 어떻게 유지시킬 수 있습니까?

🙋🏻 세줄 요약

  • 브라우저 주소 분석 - DNS 조회 - TCP 연결 - HTTP 요청 - 웹 서버 처리 - HTTP 응답 - 브라우저 렌더링
  • 트래픽을 분산 시킬 필요가 있는 경우 GSLB(Global Server Load Balancing)와 CDN(Content Delivery Network)을 고려할 수 있다.
  • 분산 환경에서 로그인을 유지시켜야하는 경우, 세션 리플리케이션, 세션 스토리지 분리, JWT Token 등을 고려할 수 있다.

👀 편하게 보기

📎 관련 이슈

closed #15

레퍼런스

## 웹 브라우저에 URL을 입력했을 때 일어나는 일에 대해 설명해 주시겠습니까?

### 개념 설명
![웹 브라우저에 URL을 입력했을 때 일어나는 일](TCP_IP.png)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DNS 서버로 IP 주소를 질의하는 작업은 왜 TCP가 아닌 UDP를 사용할까요?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[네트워크]: URL 에 www.example.com 을 쳤을 때 일어나는 일들을 설명하세요.
2 participants