Stateful
- System remembers client data from one request to the next.
- Use cases: real time, transactional (client side context)
Stateless
- Server does not store any information about the client's state between requests.
- Use: REST APIs, CDNs, Microservices.