B+ Tree Storage Engine
MagnumDB table data and secondary indexes use B+ Tree data structures. Internal nodes maintain pivot search keys while leaf pages store record payloads and sequential right-pointers for range scans.
Interactive B+ Tree Storage Visualizer
Page Size: 4096 Bytes (4 KB)Ptr < 20
20 ≤ Ptr < 40
Ptr ≥ 40
Page Inspector Details
Internal Root Page #0: Contains pivot key values 20 and 40. Internal nodes guide range searches down to appropriate leaf pages. If a leaf node exceeds 4 KB during insertion, a split occurs and a new pivot key is promoted to the root.