Backend Mystery · Card #10

What is statelessness in HTTP, and how does it impact backend services?

HTTP is, by design, a stateless protocol, which means that every request is unique and unrelated to any previous request, even from the same client. This affects backend web services by forcing them to implement their own state management solutions if such a feature is required.
networking scaling

Study the full deck →