improvement: longer timeout, more descriptive errors

This commit is contained in:
Timo Kösters 2021-08-04 22:55:03 +02:00
parent 76660bf189
commit 55a2ff025f
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
2 changed files with 6 additions and 4 deletions

View file

@ -55,6 +55,7 @@ impl Engine {
conn.pragma_update(Some(Main), "journal_mode", &"WAL")?;
conn.pragma_update(Some(Main), "synchronous", &"NORMAL")?;
conn.pragma_update(Some(Main), "cache_size", &(-i64::from(cache_size_kb)))?;
conn.pragma_update(Some(Main), "wal_autocheckpoint", &0)?;
Ok(conn)
}