28 likes
·
557 reads
4 comments
·Aug 30, 2022
Aug 30, 2022
Nice blog Sir, learned about it in detail!
1
·
·1 reply
Author
·Aug 30, 2022
Thanks Atharva Hinge. I'm glad you learned from it.
·
·Oct 31, 2022
Oct 31, 2022
One question here !! So in general do server keep the session of the users active using keepalIve ? Or is it like clients sent all request at one go and server responds back for all and close the connection?
1
·
·1 reply
Author
·Oct 31, 2022
Using keepalive, the server keeps the connection open so that it can be used again by the browser.
In HTTP/2, there's the stream(tag), which provides us the ability to parallelise requests within a single connection.
Read more about it on this article at web.dev/performance-http2
1
·