seanpmyers / loremaster

Life/self managment software
https://chronilore.github.io
Mozilla Public License 2.0
24 stars 0 forks source link

Database Considerations #137

Open seanpmyers opened 1 year ago

seanpmyers commented 1 year ago

Database Considerations

Context

Databases are a common and effective way to retain information that is entered into the application.

Databases take on various forms and have a variety of different implementations.

Inspirations

[PocketBase]()

PocketBase uses SQLite and embeds it into the back-end as a single executable. It runs in write ahead logging (WAL) to improve performance (in specific contexts with trade-offs).

Options

seanpmyers commented 1 year ago

Currently using PostgreSQL