2024-01-29 12:15:02

This commit is contained in:
Isaac Shoebottom
2024-01-29 12:15:02 -04:00
parent b389ef14ba
commit f492c22a3b
2 changed files with 22 additions and 5 deletions

View File

@ -0,0 +1,17 @@
Lecture Topic: HTTP
# Conditional Get
## Last-Modified
You can check the Last-Modified header to only get contents if the contents are newer than the contents of the cache
## ETag
Use the hash of an object to check for modification to solve cache invalidation problem
## TCP and HTTP
HTTP runs on top of TCP
- Client initiates TCP request to server
- Server accepts TCP connection
- Clint confirms request
- Three way handshake
## Non-persistent HTTP
RTT = Round trip time