diff --git a/src/config.rs b/src/config.rs index c237b10..94e0fb3 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,6 +1,6 @@ pub const DEGREE: usize = 2; -pub const MAX_KEYS: usize = 4; -pub const PAGE_SIZE: usize = 512; +pub const MAX_KEYS: usize = DEGREE * 2 + 1; +pub const PAGE_SIZE: usize = 1024; #[cfg(test)] pub mod test_config {