Why is it said that “HTTP is a stateless protocol”?

HTTP has HTTP Cookies. Cookies allow the server to track the user state, the number of connections, last connection, etc.

HTTP has persistent connections (Keep-Alive) where several requests can be sent from the same TCP Connection.

10 Answers
10

Leave a Comment