From 87d0435b186c5fb6a1ece1930c57b1f481e646d3 Mon Sep 17 00:00:00 2001 From: shyang Date: Thu, 28 Dec 2023 17:55:56 +0900 Subject: [PATCH] new post --- _posts/2023-11-02-webcommon-Web Caching.md | 4 +++- _posts/2023-11-29-servercommon-HTTP Request.md | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/_posts/2023-11-02-webcommon-Web Caching.md b/_posts/2023-11-02-webcommon-Web Caching.md index f577065..eda0fb2 100644 --- a/_posts/2023-11-02-webcommon-Web Caching.md +++ b/_posts/2023-11-02-webcommon-Web Caching.md @@ -96,4 +96,6 @@ last_modified_at: 2023-11-02T08:00:00-10:00:00 --- # 연결문서 -- [CDN](../../webcommon/webcommon-CDN) \ No newline at end of file +- [CDN](../../webcommon/webcommon-CDN) +- [HTTP Request](../../servercommon/servercommon-HTTP-Request) +- [HTTP Response](../../servercommon/servercommon-HTTP-Response) \ No newline at end of file diff --git a/_posts/2023-11-29-servercommon-HTTP Request.md b/_posts/2023-11-29-servercommon-HTTP Request.md index 646e0ed..003eeb5 100644 --- a/_posts/2023-11-29-servercommon-HTTP Request.md +++ b/_posts/2023-11-29-servercommon-HTTP Request.md @@ -69,11 +69,12 @@ last_modified_at: 2023-11-29T08:00:00-10:00:00 #### Transfer-Encoding 지시어 | 지시어 | 설명 | -| -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| -------- |:--------------------------------------------------------------------------------------------------------------------------------------------------------------- | | chunked | 이 지시어가 적용되면 Content-Length는 무시됨, 각 chunk의 시작 부분에 현재chunk의 길이를 16진수로 표기, \r\n 문자를 기준으로 chunk를 구분, 종료 chunk의 길이는 0 | | compress | Lempel-Ziv-Welch 알고리즘을 사용하는 형식, 특허문제로 인해 오늘날 거의 모든 브라우저에서 사용되지 않음 | | deflate | deflate 압축 알고리즘과 함께 zlib 구조를 사용 | -| gzip | unix gzip 프로그램의 형식 | +| gzip | unix gzip 프로그램의 형식 | + > > HTTP/1.1 200 OK > Content-Type: text/plain