Better Policies: Localization
The DBMS chooses which pages to evict on a per txn/query basis. This minimizes the pollution of the buffer pool from each query
-> Keep track of the pages that a query has accessed
Example: Postgres maintains a small ring buffer that is private to the query
Last updated