Introduction to Physical Database

by K. Yue

1. Introduction

Example:

An article on flash memory and database lists important characteristics of flash memory for database consideration:

  1. No in-place update: to rewrite a block, one or more sectors may need to be erased and rewritten. Erasion may take time in the mini-second ranges.
  2. No mechanical latency: basic operation in micro-seconds, not mini-seconds.
  3. Limited number of writes before wearing down.
  4. Asymmetric read/write: write operations may be twice as long as read operations.

2. Physical Database Design

3. Denormalization, Partitioning and Clustering

4. MySQL Indexes