翻訳と辞書
Words near each other
・ T-square (fractal)
・ T-Square (software)
・ T-stage
・ T-statistic
・ T-Stoff
・ T-Street
・ T-structure
・ T-symmetry
・ T-Systems
・ T-tail
・ T-theory
・ T-top
・ T-top (boat)
・ T-Town
・ T-TRAK
T-tree
・ T-tubule
・ T-Type
・ T-type
・ T-type asteroid
・ T-type calcium channel
・ T-unit
・ T-V-H
・ T-vertices
・ T-Vice
・ T-VIPS
・ T-VIS
・ T-wave
・ T-way
・ T-Wayne


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

T-tree : ウィキペディア英語版
T-tree


In computer science a T-tree is a type of binary tree
data structure that is used by main-memory databases, such as
Datablitz, EXtremeDB, MySQL Cluster, Oracle TimesTen and MobileLite.
A T-tree is a balanced index tree data structure optimized for cases
where both the index and the actual data are fully kept in memory,
just as a B-tree is an index structure optimized for storage on block
oriented secondary storage devices like hard disks. T-trees seek to gain the performance benefits
of in-memory tree structures such as AVL trees while avoiding the large storage space overhead which
is common to them.
T-trees do not keep copies of the indexed data fields within the index tree nodes themselves. Instead, they take advantage of the fact that the actual data is always in main memory together with the index so that they just contain pointers to the actual data fields.
The 'T' in T-tree refers to the shape of the node data structures
in the original paper that first described this type of index.〔(Tobin J. Lehman and Michael J. Carey, A Study of Index Structures for Main Memory Database Management Systems. VLDB 1986 )〕
== Performance ==

Although T-trees seem to be widely used for main-memory databases, recent research indicates that they actually do not perform better than B-trees on modern hardware:
The main reason seems to be that the traditional assumption of memory references having uniform cost is no longer valid given the current speed gap between cache access and main memory access.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「T-tree」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.