stateless vs. stateful

stateless vs. stateful Overview
This commit is contained in:
Libert Schmidt 2019-10-24 11:20:02 -04:00 committed by GitHub
parent e5322d38c7
commit 2031c28cad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -147,6 +147,9 @@ which follows the immutable infrastructure paradigm.
<details> <details>
<summary>Explain stateless vs. stateful</summary><br><b> <summary>Explain stateless vs. stateful</summary><br><b>
Stateless applications don't store any data in the host which makes it ideal for horizontal scaling and microservices.
Stateful applications depend on the storage to save state and data, typically databases are stateful applications.
</b></details> </b></details>
<details> <details>