|
|
|
|
|
by spiffytech
1430 days ago
|
|
This is saying that SQLite allows reads and writes to happen simultaneously, but it's still single-writer. There's a WIP branch to add concurrent writes. > Usually, SQLite allows at most one writer to proceed concurrently. The BEGIN CONCURRENT enhancement allows multiple writers to process write transactions simultanously if the database is in "wal" or "wal2" mode, although the system still serializes COMMIT commands. https://www.sqlite.org/cgi/src/doc/begin-concurrent/doc/begi... |
|