Hacker News new | ask | show | jobs
by lvass 1385 days ago
SQLite. The most performant configuration is unsuited to most usage, and may lead to database corruption on a system crash.
1 comments

Should have said the most performance oriented setting that's also safe from data corruption.
Then it depends on the usage. You'd likely need to run with synchronous mode on, and even on WAL, multiple separate write transactions is a issue. If you don't have many writes or buffer them into not many transactions, SQLite is the most performant.