From 5a7e04cff24e58f96412032b81eb175cf0704509 Mon Sep 17 00:00:00 2001 From: Steven Giesel Date: Fri, 22 Nov 2024 20:38:58 +0100 Subject: [PATCH] docs: Sqlite --- docs/Storage/Readme.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/Storage/Readme.md b/docs/Storage/Readme.md index f22b0e29..15afdd2e 100644 --- a/docs/Storage/Readme.md +++ b/docs/Storage/Readme.md @@ -30,3 +30,6 @@ For MySql use the following: "PersistenceProvider": "MySql" "ConnectionString": "Server=YOURSERVER;User ID=YOURUSERID;Password=YOURPASSWORD;Database=YOURDATABASE" ``` + +## Considerations +For most people a Sqlite database might be the best choice between convienence and ease of setup. As it runs "in-process" there are no additional dependencies or setup required (and therefore no additional cost). As the blog tries to cache many things, the load onto the database is not that big (performance considerations). The advantages of a "real" database like SqlServer or MySql are more in the realm of backups, replication, and other enterprise features (which are not needed often times for a simple blog). \ No newline at end of file