-
Notifications
You must be signed in to change notification settings - Fork 2
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
4주차 문제 - 8장 (URL 단축기 설계) ~ 9장 (웹 크롤러 설계) #10
Comments
8장
9장
답변
|
8장 (URL 단축기 설계)
A : 3-5-1-4-2 9장 (웹 크롤러 설계)
|
8장 (URL 단축기 설계)
9장 (웹 크롤러 설계)
|
8장 URL 단축기 설계
9장 웹 크롤러 설계
|
8장 (URL 단축기 설계)
9장 (웹 크롤러 설계)
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
8장 (URL 단축기 설계)
서버 부하를 줄임
해시 후 충돌 해소
9장 (웹 크롤러 설계)
BFS, 그래프가 어느 정도로 깊어질 수 있을지 모르기 때문에 너비 우선 탐색으로 한다.
DNS 요청은 동기적 통신을 통해 결과를 받기 때문에 스레드 중 하나가 이 작업을 하고 있으면 다른 스레드의 DNS 요청은 모두 블락 된다. 따라서 DNS 조회 결과로 얻어진 도메인 이름과 IP 주소 사이의 관계를 캐시에 보관해 놓고 주기적으로 갱신하도록 해 놓으면 성능을 효과적으로 높일 수 있다.
The text was updated successfully, but these errors were encountered: