http - TCP Termination -


what happening tcp connection after
end of http session?
example, after loading static webpage webserver

thanks

a http session refers server keeping association specific user , potentially of length (using, instance, cookies association tokens).

a http session therefore contains multiple tcp sessions. non persistent http connections, every request has own tcp session (and closed after). persistent http connections on other hand, multiple http resources fetched wihtin tcp session , either side close upon reached timeout threshold on either side.

wikipedia article on persistent http connections (keep-alive: true)


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -