This commit is contained in:
bronku 2025-12-14 18:12:33 +01:00
parent b70e23318a
commit 3b8da0abe2

View file

@ -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 {