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
//! Parallel graph algorithms for V3 backend
//!
//! Multi-threaded implementations using Rayon for improved performance
//! on multi-core systems (2-4× speedup expected).

pub mod parallel_bfs;

pub use parallel_bfs::{BfsConfig, parallel_bfs};