Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not leave the docstring as-is?

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,
Expand Down
Loading