Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 383 Bytes

File metadata and controls

10 lines (9 loc) · 383 Bytes

Definition

Storing indexes in main memory to speed up access.

Consider:

  • CPU speed increasing faster than memory access latency is decreasing.
  • memory capacity is increasing quickly. Hence now many databases can fit entirely in memory, and memory access is the new bottleneck. [[Non Uniform Access Model]] & cache performance are critical.

Indexes

  • [[B+ Tree]]
  • [[B Tree]]