Add read lock

This commit is contained in:
Ben Johnson
2020-12-19 08:56:44 -07:00
parent a4e66eb8d8
commit a8387ed6f9
5 changed files with 390 additions and 20 deletions

View File

@@ -2,3 +2,16 @@ litestream
==========
Streaming replication for SQLite.
## Questions
- How to avoid WAL checkpointing on close?
## Notes
```sql
-- Disable autocheckpointing.
PRAGMA wal_autocheckpoint = 0
```