sqlitegraph 2.2.3

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
//! 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};