A company is designing stateless application tiers to support horizontal scaling. Which TWO design principles support statelessness? (Select TWO.)
Shared database allows any instance to serve any request.
Why this answer
Storing session state in an external cache or database makes the application stateless. Local storage is stateful. Sticky sessions break statelessness.
Using configuration files per instance is stateful.