diff --git a/src/db.rs b/src/db.rs index ee835fd..f928d03 100644 --- a/src/db.rs +++ b/src/db.rs @@ -17,8 +17,7 @@ fn apply_pragmas(conn: &Connection) { PRAGMA busy_timeout = 5000; PRAGMA temp_store = memory; PRAGMA cache_size = -64000; - PRAGMA mmap_size = 268435456; - PRAGMA page_size = 4096;", + PRAGMA mmap_size = 268435456;", ) .expect("failed to set pragmas"); }