|
|
|
|
|
by jbverschoor
1505 days ago
|
|
- Most transactions are read-only - "Large" applications can usually be sharded by account. This means 1 file per account, and can easily be put on the most optimal geolocation of the account - If you defer locking until commit, allowing multiple writers ( https://www.sqlite.org/cgi/src/doc/begin-concurrent/doc/begi... ). This is good enough for most applications anayway. - Sqlite simple, fast enough for almost anything, supports a good set of features and datatypes, is very easy to embed. |
|