2 Repos
In-memory caches that store disk blocks to reduce physical I/O operations.
Distinct from Disk Caching Systems: Distinct from Disk Caching Systems: specifically refers to the kernel-level block cache used for filesystem synchronization and performance, not large-scale analysis offloading.
Explore 2 awesome GitHub repositories matching data & databases · Buffer Caches. Refine with filters or upvote what's useful.
xv6 is a Unix-like educational operating system designed for teaching kernel concepts. It is implemented as an instructional kernel for x86 and RISC-V architectures, featuring a virtual memory manager and support for symmetric multiprocessing. The system is designed to demonstrate core OS principles through a simplified re-implementation of Unix Version 6. It provides a controlled environment for studying system calls, trap handling, and process lifecycles. Its capability surface covers process management, including scheduling and context switching, and memory management via page tables for
Implements a buffer cache to store disk blocks in memory, reducing physical hardware access and synchronizing concurrent reads.
This is a Raft consensus library and distributed consensus engine implemented in Go. It provides the primitives necessary to build fault-tolerant distributed services by implementing a replicated state machine that ensures a group of servers agree on a shared system state through leader election and log replication. The project distinguishes itself through a pluggable architecture for storage backends and snapshot storage, decoupling the consensus logic from physical persistence. It includes specialized mechanisms for leadership transfer, protocol version management to support rolling upgrade
Stores specific log entries in a fast-access ring buffer to reduce read latency from the primary store.