Implementing a Buffer Pool Manager with Extendible Hash Tables and LRU-K Replacement
Buffer Pool Architecture Overview
The buffer pool manager serves as the storage interface between the database system and physical storage. When the system requests a page using a page_id, the buffer pool manager handles the retrieval process transparently, abstracting away whether the page is fetched from disk or memory.
The core components in ...
Posted on Sun, 12 Jul 2026 17:05:51 +0000 by Phoenix~Fire