개발/Web관련
[스터디] 웹 캐쉬 관련, 304 관련
yunzema
2019. 9. 27. 10:34
반응형
더 빠른 웹을 위하여 - 웹 캐쉬 (WEB CACHE)
WEB-CACHE (TIME-SPACE TRADEOFF) 더 빠른 웹사이트를 위해 저희 개발자들은 눈물겨운 노력을 많이 합니다. - WebCache - Code Compressing - Image Optimizing - Image Spriting - Critical Rendering Path - We..
cyberx.tistory.com
304 Not Modified
브라우저가 서버에게 요청한 자료에 대해 서버는 클라이언트 내에 복사된 캐시를 사용하게 한다. 서버는 If-Modified-Since 와 If-None-Match 요청 헤더를 사용해 클라이언트가 가장 최근의 자료를 가지고 있는지 여부를 확인한다
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304
304 Not Modified
The HTTP 304 Not Modified client redirection response code indicates that there is no need to retransmit the requested resources. It is an implicit redirection to a cached resource. This happens when the request method is safe, like a GET or a HEAD request
developer.mozilla.org