sqlitegraph 3.9.0

Embedded graph database with explicit SQLite, native-v3, and combined backend modes; HNSW vector search; and graph algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
//! Storage media detection and adaptive configuration
//!
//! Automatically detects storage media type (SSD vs HDD) and configures
//! optimal page sizes and I/O strategies for improved performance.

pub mod adaptive_page;
pub mod media_detector;

pub use adaptive_page::{AdaptivePageManager, PageConfig};
pub use media_detector::{MediaDetector, MediaType};