Document startup hydration and write-through persistence

This commit is contained in:
2026-02-24 23:13:25 +01:00
parent 5c199b4468
commit 1d512d321b
3 changed files with 7 additions and 1 deletions

4
FAQ.md
View File

@@ -23,3 +23,7 @@ Backend state is persisted via EF Core + SQLite.
- Non-development default: `RpgRoller/App_Data/rpgroller.db`
To start with a clean backend state, stop the app and remove the corresponding SQLite file.
## Does the backend read SQLite on every API call?
No. The backend loads state from SQLite once during startup into in-memory state and serves requests from memory. Successful state mutations are then written back to SQLite.