オペレーティングシステムとページテーブルに関して、ページングとページテーブルには4つの一般的な方法があるようです
基本 - ページ番号とオフセットを格納する単一のページ テーブル
Hierarchical - 仮想アドレスを複数の部分に分割する多層テーブル
Hashed - 同じエントリへの複数のハッシュ マッピングを含むことが多いハッシュ ページ テーブル
Inverted - The logical address also includes the PID, page number and offset. Then the PID is used to find the page in to the table and the number of rows down the table is added to the offset to find the physical address for main memory. (Rough, and probably terrible definition)
I am just wondering what are the pros and cons of each method? It seems like basic is the easier method but may also take up more space in memory for a larger address space. What else?