Does http2 count as "stateful"?

HTTP protocol stateless
then HTTP2 can be understood as "HTTP protocol with version 2.0 is stateful" by adding two new features: multiplexing and resettable ?

Mar.28,2021

because HTTP is stateless, you need Cookie to record some states. HTTP2 is only for reusing a single TCP connection, but from a server perspective, you still need cookie to record some state, so you can't say that HTTP2 is stateful.

Menu