diff --git a/README.md b/README.md index 76409ec..3354353 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,9 @@ which follows the immutable infrastructure paradigm.
Explain stateless vs. stateful
+ +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.