perf: increase mmap size to 1GB

This commit is contained in:
Greg Heartsfield 2022-12-17 23:17:16 -06:00
parent 3f32ff67ab
commit 0c72053a49

View File

@ -16,7 +16,7 @@ pub const STARTUP_SQL: &str = r##"
PRAGMA main.synchronous=NORMAL; PRAGMA main.synchronous=NORMAL;
PRAGMA foreign_keys = ON; PRAGMA foreign_keys = ON;
PRAGMA journal_size_limit=32768; PRAGMA journal_size_limit=32768;
pragma mmap_size = 536870912; -- 512MB of mmap pragma mmap_size = 1073741824; -- 1024MB of mmap
"##; "##;
/// Latest database version /// Latest database version