sqlitegraph 2.0.7

Embedded graph database with full ACID transactions, HNSW vector search, dual backend support, and comprehensive graph algorithms library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Checkpoint I/O Module
//!
//! This module contains the I/O operations for checkpoint processing, including
//! block flushing, checkpoint file writing, and V2 graph file operations.

pub mod block_flusher;
pub mod checkpoint_writer;
pub mod multi_file;

// Re-export main I/O types for easier access
pub use self::block_flusher::BlockFlusher;
pub use self::checkpoint_writer::CheckpointWriter;

// Re-export multi-file checkpoint types
pub use self::multi_file::{
    CheckpointManifest, CheckpointSegment, CheckpointSegmentMeta, MultiFileCheckpointConfig,
    MultiFileRecovery, MultiSegmentIterator, RecoveredCheckpoint, SegmentReader, SegmentWriter,
};