| ▲ | rcxdude 2 hours ago | ||||||||||||||||
sqlite is not drastically better in this regard: it's designed as a rewritable database, not a log store, and so it's also going to have quite a big write amplification if you do lots of small writes. (Probably the best mitigation is to buffer up the log lines and write them out periodically, but for an idle linux system this might need to be pretty long to make much of a different, and then you would inevitably get complaints about logs being lost during a power failure or kernel panic) | |||||||||||||||||
| ▲ | otterley 2 hours ago | parent [-] | ||||||||||||||||
Is that true even with PRAGMA journal_mode = WAL? | |||||||||||||||||
| |||||||||||||||||