Skip to main content

Module buffer

Module buffer 

Source
Expand description

Buffer Pool — in-memory page cache with CLOCK eviction.

Pages are loaded from disk into fixed-capacity frame slots. Pin counts prevent eviction of pages currently in use. The CLOCK algorithm sweeps frames looking for an unpinned, unreferenced victim when the pool is full.

Structs§

BufferPool
Thread-safe buffer pool with CLOCK eviction.