awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 个仓库

Awesome GitHub RepositoriesBuffer Pool Page Evictions

Loads disk pages into a fixed-size memory frame pool and evicts old pages when space runs out.

Distinct from Memory-Disk Layering: Distinct from Memory-Disk Layering: focuses on the buffer pool eviction policy for database pages, not general memory-disk layering.

Explore 1 awesome GitHub repository matching data & databases · Buffer Pool Page Evictions. Refine with filters or upvote what's useful.

Awesome Buffer Pool Page Evictions GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • oceanbase/minioboceanbase 的头像

    oceanbase/miniob

    4,318在 GitHub 上查看↗

    MiniOB is an open-source educational relational database kernel designed for learning the internals of database systems. It implements a dual-engine storage architecture combining B+ Tree and LSM-Tree, supports SQL parsing and query execution, and provides transactional processing with multi-version concurrency control. The system communicates with clients using the MySQL wire protocol and includes a vector database extension for storing and querying high-dimensional vectors. The project distinguishes itself through its comprehensive coverage of core database concepts in a single, learnable c

    Manages disk page loading into a fixed-size memory pool with eviction for efficient access.

    C++classroomcplusplusdatabase
    在 GitHub 上查看↗4,318
  1. Home
  2. Data & Databases
  3. Persistent Storage Providers
  4. Memory-Disk Layering
  5. Buffer Pool Page Evictions

探索子标签

  • Page PrefetchingLoads disk pages into the buffer pool ahead of query execution to reduce I/O wait time. **Distinct from Buffer Pool Page Evictions:** Distinct from Buffer Pool Page Evictions: focuses on proactively loading pages before they are needed, not on evicting pages when the pool is full.