From 3195fee599191aa659758de0788ca7711c4c9ab0 Mon Sep 17 00:00:00 2001 From: djmil Date: Thu, 20 Jul 2023 12:50:09 +0200 Subject: [PATCH] Update Home --- Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Home.md b/Home.md index e9ef6b8..1c93dfc 100644 --- a/Home.md +++ b/Home.md @@ -112,7 +112,7 @@ The Repository is the interface between the application and the database, and pr ## Choosing a Database -For our database selection, we’ll use an **embedded, in-memory** database. “Embedded” simply means that it’s a Java library, so it can be added to the project just like any other dependency. “In-memory” means that it stores data in memory only, as opposed to persisting data permanent, durable storage. +For our [[Database]] selection, we’ll use an **embedded, in-memory** database. “Embedded” simply means that it’s a Java library, so it can be added to the project just like any other dependency. “In-memory” means that it stores data in memory only, as opposed to persisting data permanent, durable storage. The specific in-memory database we’ll use is [H2](https://www.h2database.com/html/main.html). Fortunately, H2 is highly compatible with other relational databases, so dev-prod parity *(application might behave differently when running the in-memory database than when running in production)* won’t be a big issue. We’ll use H2 for **convenience for local development**, but want to recognize the tradeoffs.