6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PostgreSQLのアーキテクチャ

Last updated at Posted at 2019-03-06

以下参考資料を読むと良い

参考資料

PostgreSQLアーキテクチャ入門(INSIGHT OUT 2011)

気になったポイント

  • テーブルに対してレコードを追加(INSERT)した場合は、データファイル末尾にレコードが追加される
  • テーブルに対してレコードを削除(DELETE)した場合は、レコードに削除マークが付けられる
  • テーブルに対してレコードを更新(UPDATE)した場合は、旧レコードに削除マークが付けられ、新レコードがデータファイル末尾に追加される
  • 削除マークが付けられたレコードはバキューム後で再利用可能になる
  • パフォーマンスチューニングの考え方はOracleなどの他のRDBMSと変わらない

スライド抜粋

  • p8
    image.png

  • p9
    image.png

  • p11
    image.png

  • p19
    image.png

  • p30
    image.png

  • p33
    image.png

  • p37
    image.png

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?