Merge pull request #34 from rschmidtz/patch-1

stateless vs. stateful
This commit is contained in:
Arie Bregman 2019-10-24 19:27:11 +03:00 committed by GitHub
commit d3eb6f85fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>