|
|
|
|
|
by LAC-Tech
1385 days ago
|
|
This was pre-WAL, presumably enabling WAL would help a lot Indeed it would! "WAL provides more concurrency as readers do not block writers and a writer does not block readers. Reading and writing can proceed concurrently." https://www.sqlite.org/wal.html I think the people advocating for SQLite to be used in more places are all assuming write ahead logging is enabled. |
|
The chief problem that I see with WAL is that it breaks ACID with databases that are ATTACHed, as the documentation shows:
https://sqlite.org/lang_attach.html