Skip to content

Commit

Permalink
docs: Sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet authored Nov 22, 2024
1 parent 9e65a35 commit 5a7e04c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/Storage/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

0 comments on commit 5a7e04c

Please sign in to comment.