Nodes

Every B+ Tree node is comprised of an array of key/value pairs.

-> The keys are derived from the attributes that the index is based on.

-> The values will differ based on wether the node is classified as inner nodes or leaf nodes.

The arrays are (usually) kept key order.

Last updated