mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2025-07-31 00:18:27 -04:00
perf: reduce per thread mmap allocation for DB
This commit is contained in:
@@ -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 = 1073741824; -- 1024MB of mmap
|
pragma mmap_size = 134217728; -- 128MB of mmap
|
||||||
"##;
|
"##;
|
||||||
|
|
||||||
/// Latest database version
|
/// Latest database version
|
||||||
|
Reference in New Issue
Block a user