From 1be81339ccc3f013fec376ce76335df9fc634138 Mon Sep 17 00:00:00 2001 From: Ally Heev Date: Sat, 30 May 2026 15:08:35 +0530 Subject: [PATCH] fix max_db_size docstr --- src/database.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database.rs b/src/database.rs index 82a9ff4..c1933fb 100644 --- a/src/database.rs +++ b/src/database.rs @@ -33,7 +33,7 @@ pub struct SystemConfig { /// Whether or not the database can be written to from this instance /// Defaults to not read-only read_only: bool, - /// The maximum size of the database. Defaults to 8TB + /// The maximum size of the database in bytes. Note that this is introduced temporarily for now to get around with the default 8TB mmap address space limit some max_db_size: u64, /// If true, the database will automatically checkpoint when the size of the WAL file exceeds the checkpoint threshold. auto_checkpoint: bool,