1 مستودع
Mechanisms for manually forcing in-memory data to be flushed to stable disk storage.
Distinct from Storage Disk Configurators: Distinct from Storage Disk Configurators: focuses on the action of synchronizing data (fsync) rather than filesystem mapping configuration.
Explore 1 awesome GitHub repository matching data & databases · Disk Synchronization Controls. Refine with filters or upvote what's useful.
Sled is an embedded key-value store and ACID-compliant database designed for high-performance data persistence. It functions as a log-structured storage engine that organizes data using B+ trees to support efficient range queries and prefix scans. The engine implements a zero-copy data store model, utilizing epoch-based reclamation to provide direct references to cached values without memory allocations. It distinguishes itself through a combination of write-ahead logging, page cache optimizations to reduce write amplification on flash storage, and serializable transactions for atomic multi-k
Provides capabilities to force pending writes to stable storage via blocking calls or futures.