// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
pub
pub use ;
pub use LeafNode;
pub use PageID;
pub const INNER_NODE_SIZE: usize = 4096;
pub const DISK_PAGE_SIZE: usize = 4096; // The size of a disk page.
pub const MAX_LEAF_PAGE_SIZE: usize = 32768; // 32KB
pub const MAX_KEY_LEN: usize = 2020; // 2KB
pub const MAX_VALUE_LEN: usize = 16332; // 16KB
pub const CACHE_LINE_SIZE: usize = 64;
pub const FENCE_KEY_CNT: usize = 2;
pub const KV_META_SIZE: usize = 8;