Comment on Why are (rational) databases preferred over keeping the data in memory?

corytheboyd@kbin.social ⁨11⁩ ⁨months⁩ ago

Like everyone has mentioned, because you want the data to persist across program runs. By all means, use in-memory state for truly ephemeral things like caches. You will need both for any real world task.

One more unmentioned reason to use a database, even if the persisted set off data is small, is the query engine. SQLite is absolutely perfect for such small tasks. Writing SQL to query the data can save you from tons of waste fully repetitive app code.

source
Sort:hotnewtop