From 2031c28cad5c46c6a1cc7e93c739ccdf29ebb72d Mon Sep 17 00:00:00 2001
From: Libert Schmidt <10736011+rschmidtz@users.noreply.github.com>
Date: Thu, 24 Oct 2019 11:20:02 -0400
Subject: [PATCH] stateless vs. stateful
stateless vs. stateful Overview
---
README.md | 3 +++
1 file changed, 3 insertions(+)
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.