Clever Geek Handbook
📜 ⬆️ ⬇️

T-tree


T-tree.pdf

T-tree ( English T-tree ) - balanced binary tree , optimized for cases when the requested (hot) data is completely stored in RAM. Used by in -memory databases : Datablitz , EXtremeDB , MySQL Cluster , Oracle TimesTen and MobileLite.

The structure of the T-tree node can be represented as follows:

  struct t_tree_node
 {
     void * parent ;
     // sorted array of data pointers
     void ** data ;
     // additional control data
     void * control ;
     void * left_child ;
     void * right_child ;
 }

Literature

  • Tobin J. Lehman and Michael J. Carey ,. A Study of Index Structures for Main Memory Database Management Systems. (English) (pdf). VLDB. Date of treatment April 2, 2010. Archived April 21, 2012.


Source - https://ru.wikipedia.org/w/index.php?title=T-tree&oldid=87589245


More articles:

  • Villamartsana
  • Binicinico
  • Buoy
  • Campoformido
  • Mukhtar, Omar
  • Gordon, Barry
  • Wingulmark
  • Life Goes On (Tupac Shakur song)
  • Thun ship
  • Wirth, Oswald

All articles

Clever Geek | 2019