Skip to content

Commit

Permalink
chore: increase btree degree
Browse files Browse the repository at this point in the history
  • Loading branch information
arriqaaq committed Nov 28, 2024
1 parent 6111c97 commit cfad674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::sync::Arc;

use crate::node::LeafValue;

const B: usize = 6; // B-tree degree (max children = 2B)
const B: usize = 16; // B-tree degree (max children = 2B)

#[derive(Clone)]
pub(crate) struct BTree<V: Clone> {
Expand Down

0 comments on commit cfad674

Please sign in to comment.