Files
vibe-kanban/crates/db
Solomon 25c6d0a7c0 Reduce SQLITE db locks (#1806)
Common settings to reduce database locks.

> 1. WAL is significantly faster in most scenarios.
 2. WAL provides more concurrency as readers do not block writers and a writer does not block readers. Reading and writing can proceed concurrently.
 3.Disk I/O operations tends to be more sequential using WAL.
 4. WAL uses many fewer fsync() operations and is thus less vulnerable to problems on systems where the fsync() system call is broken.

https://sqlite.org/wal.html
2026-01-06 18:40:07 +00:00
..
2026-01-06 18:40:07 +00:00
2026-01-06 15:58:10 +00:00