Stateless Apps

Stateless applications handle each request independently without remembering any previous interactions or user data. Data from previous interactions is referred to as state since that data isn’t stored anywhere, these apps are stateless. Here’s an example: When you use a search engine, and that search is interrupted (e.g., the window is closed), those search results are lost. You’ll need to start all over.

On the other hand, applications that process requests while considering previous interactions are called stateful applications.


Last modified August 25, 2024: Update stateless-apps.md (683dc4c)