sentinel-dbms 2.1.1

Cyberpath Sentinel is a filesystem-backed document DBMS written in Rust.
Documentation
1
2
3
4
5
6
7
//! WAL (Write-Ahead Logging) functionality for Sentinel DBMS.
//!
//! This module provides comprehensive WAL operations including configuration,
//! verification, recovery, and streaming capabilities. The WAL ensures data
//! durability and enables crash recovery for the filesystem-backed database.

pub mod ops;