SQLite Forum

Changes to support concurrent writes to wal database distributed over network FS
Login
The main reason is to remove lock needed for the WAL, unsynchronized access in a distributed system leads to better performance. I believe split files is easier to implement, rather than exclusive write regions of the WAL. Separate files should also work better if the sync system split each file into objects, like ceph does.