How easy is setting up an sqlite container as opposed to just connecting to an existing postgres container network? Genuine question since Iāve never tried using sqlite before.
SQLite doesnāt need a networked setup at all. What the poster above is asking is an option for linkwarden to just use embedded SQLite as its db engine. For apps I build I just embed SQLite into the binary, no db network needed, the binary just sets up a db file at startup in say ~/.config/app/db.file and off to the races. If you donāt need to access it from multiple contexts SQLite is hard to beat.
stephen01king@lemmy.zip āØ10ā© āØhoursā© ago
How easy is setting up an sqlite container as opposed to just connecting to an existing postgres container network? Genuine question since Iāve never tried using sqlite before.
mitchty@lemmy.sdf.org āØ5ā© āØhoursā© ago
SQLite doesnāt need a networked setup at all. What the poster above is asking is an option for linkwarden to just use embedded SQLite as its db engine. For apps I build I just embed SQLite into the binary, no db network needed, the binary just sets up a db file at startup in say ~/.config/app/db.file and off to the races. If you donāt need to access it from multiple contexts SQLite is hard to beat.